Skip to content

Instantly share code, notes, and snippets.

@anarcie
anarcie / DuckBot.js
Last active June 9, 2017 20:07
Duck Bot
var DuckBot = function(words, users){
//Settings
this.needles = words;
this.hayStacks = users;
this.rateLimit = 30000; // milliseconds
this.debug = true;
//Properties
this.rateLock = false;