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
| var DuckBot = function(words, users){ | |
| //Settings | |
| this.needles = words; | |
| this.hayStacks = users; | |
| this.rateLimit = 30000; // milliseconds | |
| this.debug = true; | |
| //Properties | |
| this.rateLock = false; |
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
| private void LandfallGods(string message, string caller) | |
| { | |
| caller = caller.ToLower(); | |
| if (!caller.Equals("landfall_games")) | |
| { | |
| return; | |
| } | |
| message = message.ToLower(); | |
| try | |
| { |
NewerOlder