Upload case.js
Browse files
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('
|
4956 |
} else if (args[0] === 'off') {
|
4957 |
global.autotyping = false;
|
4958 |
-
await reply('
|
4959 |
} else {
|
4960 |
-
return reply(
|
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('
|
4970 |
} else if (args[0] === 'off') {
|
4971 |
global.antidelete = false;
|
4972 |
-
await reply('
|
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('
|
4985 |
} else if (args[0] === 'off') {
|
4986 |
global.alwaysonline = false;
|
4987 |
-
await reply('
|
4988 |
} else {
|
4989 |
-
return reply(
|
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 |
}
|