Advertisement
Slowstone72

name clock

Dec 20th, 2024
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* Ancient code published for archival purposes. May or may not work or be relevant.
  2. Feel free to do whatever you want with this, if anything.
  3. Archive from 2017-10-07 - contents may be older. */
  4.  
  5. var myname = "myname here"
  6.  
  7. MPP.chat.send('Clock is now active!')
  8. updateName = function (name) { MPP.client.sendArray([{ m: "userset", set:{name: name }}]) }; Date.prototype.time = function() { return this.toLocaleTimeString() }; wut=setInterval(function() { updateName(myname +' ' + new Date().time()) }, 2100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement