Advertisement
Guest User

discord bot repeat 15min

a guest
Jun 17th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. console.log("Hello!");
  2. const Discord = require("discord.js");
  3. const bot = new Discord.Client();
  4. const talkedRecently = new Set();
  5. var cooldowns = {}
  6. var minute = 60000;
  7. var hour = minute * 24;
  8.  
  9. bot.login("token bot")
  10.  
  11. bot.on('ready', () => { var channel = bot.channels.get("channel ID").send("!cauvong role name");
  12. })
  13.  
  14. bot.on("message", (message) => {
  15. if (message.content == "!cauvong **@Role Name**") {
  16. setTimeout(function(){
  17. bot.channels.get("channel ID").send("!cauvong role name");
  18. }, 900000);
  19. }
  20. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement