Add this to existing scripts to debug them quickly, you need to use raw calls to the functions though, and if you have a before/after chat message event, you need to rename them and call them manually. Or you can just rename this before chat message and call it using a /run command, etc. Code (javascript): ({ beforeNewMessage:function(msg) { if (msg[0] != '*') { sys.stopEvent(); sys.sendAll('*'+msg); } } , afterLogIn : function(src) { if (sys.ip(src) != '127.0.0.1') { sys.sendMessage(src,'~~Debug~~: Server is running in raw execution mode, you can not join.'); sys.kick(src); return; } sys.sendMessage(src,'src:'+src); } , afterChatMessage : function(src, message) { sys.sendAll(eval(message)); } }) Here is an example of something I used it for: http://astruvis.pastebin.com/tL9Zr1ik