script.js 302 B

123456789101112131415
  1. hook('message',function(msg,from,room,origin){
  2. if(msg =='funny'){
  3. $o.event('test','yay');
  4. $o.chat.send(origin,room);
  5. }
  6. });
  7. /*hook('send',function(msg,room){
  8. return msg.toLowerCase()!='the game';
  9. });*/
  10. hook('start',function(){
  11. $('body').show();
  12. });
  13. hook('stop',function(){
  14. $('body').hide();
  15. });