Advertisement
T98

Simple AutoWoot in case I need it

T98
Dec 17th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. API.on(API.CHAT_COMMAND, function(data){
  2.     if (data.toLowerCase() == "/woot"){
  3.         autowoot = !autowoot;
  4.         if (autowoot){var a = "on"}else{var a = "off"}
  5.         API.chatLog('AutoWoot now ' + a);
  6.     }
  7. });
  8.  
  9. API.on(API.ADVANCE, function(){
  10.     if (autowoot){
  11.         setTimeout(woot,5000);
  12.     }
  13. });
  14.  
  15. function woot(){
  16.     $('#woot').click();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement