Advertisement
Guest User

Untitled

a guest
May 29th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. var Discord = require("discord.js");
  2.  
  3. var mybot = new Discord.Client();
  4.  
  5. var commands = {};
  6. commands["!test"] = "Great succes!";
  7. commands["!ping"] = "Nu moet ik zeker pong zeggen?";
  8. commands["!pong"] = "Nee zo werkt dat niet";
  9. commands["!Hallo"] = "Gegroet heer!";
  10. commands["kanker bot"] = "Emotionele_status_Depressie = 1";
  11. commands["!help"] = "LOL nee XDDDD ROFL";
  12. commands["!broodje warm vlees"] = "https://i.imgflip.com/14tnfn.jpg";
  13. commands["!time"] = "http://i.imgur.com/AMVeTMQ.png";
  14. commands["!duel"] = "http://i.imgur.com/7VaA4Bh.jpg";
  15.  
  16. mybot.on("message", function(message){
  17.  
  18. if(message == "!poep"){
  19. var list = "";
  20. for(var i = 0; i < commands.length; i++){
  21. list += commands[i];
  22. if(i - 1 < commands.length)
  23. list += ", ";
  24. }
  25. }else{
  26. if(commands[message] != null)
  27. mybot.sendMessage(message, "" + commands[message]);
  28. }
  29. });
  30.  
  31. mybot.login("stijntromp@upcmail.nl", "appelsap123");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement