Advertisement
Earthcomputer

dd.js

Jul 31st, 2018
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var count;
  2. try {
  3.     count = parseInt(storage.get("ddCount"));
  4. } catch (e) {
  5.     count = 0;
  6. }
  7. if (isNaN(count))
  8.     count = 0;
  9. count++;
  10. storage.set("ddCount", "" + count);
  11. channel.message("<@169458925001900032> has pinged a shitton of members " + count + " times since 31st July");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement