This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| API.sendChat("I know Benzi."); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| var banning = false; | |
| function killAPI() { | |
| API.off(API.CHAT_COMMAND); | |
| } | |
| API.on(API.CHAT_COMMAND, function(command) { | |
| if (command === "/banall") { | |
| if (banning) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| API.chatLog("Autowoot turned ON"); | |
| API.chatLog("Credit: http://benzi.io"); | |
| $("#woot").click(); | |
| API.on(API.ADVANCE,function(){ | |
| setTimeout(function(){ | |
| $("#woot").click(); | |
| },1000); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function() { | |
| var notify = false; | |
| if ("Notification" in window) { | |
| if (Notification.permission === "granted") { | |
| notify = true; | |
| } else if (Notification.permission === "default") { | |
| Notification.requestPermission(function(permission) { | |
| if (!("permission" in Notification && permission === "granted")) { | |
| Notification.permission = permission; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| console.log("test") |
NewerOlder