Advertisement
T98

RomsThing

T98
Dec 20th, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var messages = [
  2.     "Hey! Why did you stop talking? Party isn't over yet!",
  3.     "I think I bit my tongue o.O",
  4.     "The cool thing about being a bot is that I'm never bored",
  5.     "@RomsKidd Are you there? I want a hug :3",
  6.     "Did you know that giraffes can lick their own ears?",
  7.     "I dream that someday.. I'll become a real human. Then, I'll be a canibal.",
  8.     "Oh look, I found my earring I lost yesterday.",
  9.     "/me coughs awkwardly",
  10.     "You know what would be good? Air conditioning here."];
  11.  
  12. var time = setTimeout(reset,2700000);
  13. //2700000
  14. function reset(){
  15.     time = setTimeout(function(){
  16.         var a = Math.floor(Math.random() * messages.length);
  17.         API.sendChat(messages[a]);
  18.         reset();
  19.     },2700000);
  20. }
  21.  
  22. API.on(API.CHAT, function(data){
  23.     var msg = data.message;
  24.     var user = data.un;
  25.     var userid = data.uid;
  26.     if (userid != "undefined"){
  27.         clearTimeout(time);
  28.         reset();
  29.     }
  30. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement