Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- API.on(API.CHAT_COMMAND, function(data){
- if (data.toLowerCase() == "/woot"){
- autowoot = !autowoot;
- if (autowoot){var a = "on"}else{var a = "off"}
- API.chatLog('AutoWoot now ' + a);
- }
- });
- API.on(API.ADVANCE, function(){
- if (autowoot){
- setTimeout(woot,5000);
- }
- });
- function woot(){
- $('#woot').click();
- }
Advertisement
Add Comment
Please, Sign In to add comment