Advertisement
welington

Memescript Kappa

Dec 4th, 2016
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //Memescript
  2. setInterval(function() {
  3.     chat.sendMessage(":pepo:")
  4. }, 3000);
  5.  
  6. var shouts = chatView.messages;
  7. var memes = [":pepe:", ":pepo:", ":pepechu:"];
  8. setInterval(function() {
  9.         shouts.forEach(function(entry) {
  10.             if (entry.uid == chatView.uid)
  11.                 chatView.editShoutForm(entry.shout_id, memes[Math.floor(Math.random() * memes.length)]);
  12.             chatView.editShout();
  13.         });
  14.     },
  15.     5);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement