Skip to content

Instantly share code, notes, and snippets.

@Benzi
Created April 11, 2015 07:33
Show Gist options
  • Save Benzi/3ea13f54874bd4bf772c to your computer and use it in GitHub Desktop.
Save Benzi/3ea13f54874bd4bf772c to your computer and use it in GitHub Desktop.
Very basic autowoot for plug.dj
(function() {
API.chatLog("Autowoot turned ON");
API.chatLog("Credit: http://benzi.io");
$("#woot").click();
API.on(API.ADVANCE,function(){
setTimeout(function(){
$("#woot").click();
},1000);
});
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment