Advertisement
Earthcomputer

pun.js

Aug 20th, 2018
251
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("punCount"));
  4. } catch (e) {
  5.     count = 0;
  6. }
  7. if (isNaN(count))
  8.     count = 0;
  9. count++;
  10. storage.set("punCount", "" + count);
  11. channel.message(count + " puns have been made by XcelliorE since 21st August");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement