Advertisement
mateon1

Plug - Event countdown

Mar 22nd, 2014
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Unformatted
  2. API.on(API.CHAT,function(e){/!(countdown|event)/.test(e.message)&&API.sendChat("@"+e.from+" - The event start"+(function(e){if(e<0){return"s in: "+~~(-e/3600000)+":"+("0"+~~(-e/60000)%60).slice(-2)+":"+("0"+~~(-e/1000)%60).slice(-2)}else{return"ed "+(e>3600000?~~(e/3600000)+":":"")+("0"+~~(e/60000)%60).slice(-2)+":"+("0"+~~(e/1000)%60).slice(-2)+" ago"}}(Date.now()-new Date("2014-03-22T19:00:00.000Z"))))})
  3.  
  4. // Beautified
  5. API.on(API.CHAT, function (e) {
  6.     /!(countdown|event)/.test(e.message) && API.sendChat("@" + e.from + " - The event start" +
  7.         (function (e) {
  8.             if (e < 0) {
  9.                 return "s in: " + ~~(-e / 3600000) + ":" + ("0" + ~~(-e / 60000) % 60).slice(-2) + ":" + ("0" + ~~(-e / 1000) % 60).slice(-2);
  10.             } else {
  11.                 return "ed " + (e > 3600000 ? ~~(e / 3600000) + ":" : "") + ("0" + ~~(e / 60000) % 60).slice(-2) + ":" + ("0" + ~~(e / 1000) % 60).slice(-2) + " ago";
  12.             }
  13.         }(Date.now() - new Date("2014-03-22T19:00:00.000Z"))));
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement