quote:
Originally posted by Mattike
code:
//This will add '/all' in front of a message when the script is active and the message is not a command
function OnEvent_ChatWndSendMessage(ChatWnd, Message) {
if(Active && !/^\/[^\/\s\n\t]+([\/\s\n\t]|$)/.test(Message)) return "/all "+Message;
}
JimboDude if you have this portion still in your code remove it...
because this will cause it to keep sending...