corral

prototype reminder

Nov 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. mnemonic = { };
  2. $(window).on('room.chat.message',function(event,chat){
  3.  
  4. kero = chat.message.split(" ");
  5. ghost = [kero[0]];
  6. tomat = $(kero).not(ghost).get();
  7. sayn = tomat.join(" ");
  8.  
  9. if(kero[0]=="!remind"){
  10. mnemonic[kero[1]] = sayn;
  11. }
  12. else if(kero[0] =="!test8"){
  13. $.post("#",{message: "/me" + mnemonic[chat.from.name]});
  14. }
  15. });
Add Comment
Please, Sign In to add comment