Advertisement
Guest User

get Server link command

a guest
Feb 17th, 2020
832
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. client.on ('message', async (toxicc) => {
  2. if (!toxicc.guild || toxicc.author.bot) return false;
  3. var prefix = "!";
  4. switch (toxicc.content.split(' ') [0]){
  5. case prefix + 'رابط':
  6. toxicc.guild.channels.get (toxicc.channel.id).createInvite({maxUses: 10}).then ((url) => {
  7. toxicc.author.send ("تم انشاء رابط\nمدى الرابط: يوم\nاقصى حد للاستخدام: 10\n"+url);
  8. toxicc.channel.send("Check Your DM.");
  9. })
  10. break;
  11. }
  12. })
  13.  
  14. //By 3Mo_Steve || Toxic Codes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement