API-XX commited on
Commit
6b129d7
·
verified ·
1 Parent(s): 19c6c85

Upload case.js

Browse files
Files changed (1) hide show
  1. case.js +8 -8
case.js CHANGED
@@ -4952,12 +4952,12 @@ case 'members': {
4952
  if (!args[0]) return reply(`Example: ${prefix + command} on/off`);
4953
  if (args[0] === 'on') {
4954
  global.autotyping = true;
4955
- await reply('`Successfully Activated Autotyping.`');
4956
  } else if (args[0] === 'off') {
4957
  global.autotyping = false;
4958
- await reply('`Successfully Deactivated Autotyping.`');
4959
  } else {
4960
- return reply(`\`Invalid option. Use "on" or "off" to toggle Anticall.\``);
4961
  }
4962
  break;
4963
  }
@@ -4966,10 +4966,10 @@ case 'members': {
4966
  if (!args[0]) return reply(`Example: ${prefix + command} on/off`);
4967
  if (args[0] === 'on') {
4968
  global.antidelete = true;
4969
- await reply('`Successfully Activated Antidelete.`');
4970
  } else if (args[0] === 'off') {
4971
  global.antidelete = false;
4972
- await reply('`Successfully Deactivated Antidelete.`');
4973
  } else {
4974
  return reply(`\`Invalid option. Use "on" or "off" to toggle Antidelete.\``);
4975
  }
@@ -4981,12 +4981,12 @@ case 'members': {
4981
 
4982
  if (args[0] === 'on') {
4983
  global.alwaysonline = true;
4984
- await reply('`Successfully Activated Alwaysonline.`');
4985
  } else if (args[0] === 'off') {
4986
  global.alwaysonline = false;
4987
- await reply('`Successfully Deactivated Alwaysonline.`');
4988
  } else {
4989
- return reply(`\`Invalid option. Use "on" or "off" to toggle Alwaysonline.\``);
4990
  }
4991
  break;
4992
  }
 
4952
  if (!args[0]) return reply(`Example: ${prefix + command} on/off`);
4953
  if (args[0] === 'on') {
4954
  global.autotyping = true;
4955
+ await reply('Successfully Activated Autotyping.');
4956
  } else if (args[0] === 'off') {
4957
  global.autotyping = false;
4958
+ await reply('successfully deactivated autotyping.');
4959
  } else {
4960
+ return reply(`Invalid option. Use "on" or "off" to toggle Anticall.`);
4961
  }
4962
  break;
4963
  }
 
4966
  if (!args[0]) return reply(`Example: ${prefix + command} on/off`);
4967
  if (args[0] === 'on') {
4968
  global.antidelete = true;
4969
+ await reply('successfully activated antidelete.');
4970
  } else if (args[0] === 'off') {
4971
  global.antidelete = false;
4972
+ await reply('successfully deactivated antidelete.');
4973
  } else {
4974
  return reply(`\`Invalid option. Use "on" or "off" to toggle Antidelete.\``);
4975
  }
 
4981
 
4982
  if (args[0] === 'on') {
4983
  global.alwaysonline = true;
4984
+ await reply('successfully activated alwaysonline.');
4985
  } else if (args[0] === 'off') {
4986
  global.alwaysonline = false;
4987
+ await reply('Successfully Deactivated Alwaysonline.');
4988
  } else {
4989
+ return reply(`Invalid option. Use "on" or "off" to toggle Alwaysonline.`);
4990
  }
4991
  break;
4992
  }