Advertisement
Guest User

roll commands

a guest
Feb 17th, 2020
625
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. client.on ('message', async (toxicc) => {
  2. if (!toxicc.guild || toxicc.author.bot) return false;
  3. var prefix = '!';
  4. if (toxicc.content.startsWith(prefix + 'roll')) {
  5. var args = toxicc.content.split(' ') [1];
  6. if (!args) return toxicc.channel.send('ارسل رقم');
  7. if (isNaN (args))return toxicc.channel.send('ارسل ارقام فقط');
  8. if (args < 1) return toxicc.channel.send('يجب اختيار رقم فوق 0');
  9. toxicc.channel.send (Math.floor (Math.random() * args));
  10. }
  11. })
  12. //By 3Mo_Steve || Toxic Codes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement