EnragedPvP

Untitled

Feb 2nd, 2021
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 KB | None | 0 0
  1.  
  2. bot.on('ready', () => {
  3. console.log('bot is ready');
  4. });
  5.  
  6. bot.on('message', function (message) {
  7. if (!message.content.startsWith(prefix) || message.author.bot)
  8. return;
  9.  
  10. const args = message.content.slice(prefix.length).split(/ +/);
  11. const command = args.shift().toLowerCase();
  12.  
  13. if (command === 'wipe') {
  14. message.channel.send('Journey Begins with OPEN BETA this FRIDAY Feb 5th 2021');
  15. } if (command === 'vote') {
  16. message.channel.send('Down below you will find all the links to our servers so that you can vote! We are currently looking into a way players can receive points upon voting');
  17. message.channel.send('Island=https://ark-servers.net/server/260594/',
  18. message.channel.send('Aberration=https://ark-servers.net/server/260596/',
  19. message.channel.send('Center=https://ark-servers.net/server/260595/',
  20. message.channel.send('Extinction=https://ark-servers.net/server/260597/',
  21. message.channel.send('Genesis=https://ark-servers.net/server/260598/',
  22. message.channel.send('Crystal Isles=https://ark-servers.net/server/260599/',
  23. message.channel.send('Ragnarok=https://ark-servers.net/server/260600/',
  24. message.channel.send('Valguero=https://ark-servers.net/server/260601/'))))))));
  25. } if (command === 'commands') {
  26. message.channel.send('The Commands for this server are as follows: (Make sure to use the prefix - )'); {
  27. message.channel.send('**-wipe**= ``lets you know when the next wipe day is``');
  28. message.channel.send('**-vote**= ``gives you voting links for ark-servers.net so you can help our server grow up the ranks!``');
  29. message.channel.send('**-commands**= ``Gives you a commands list``');
  30. }
  31. }
  32. }
  33.  
  34. );
Advertisement
Add Comment
Please, Sign In to add comment