code://Script created by Aden Beckitt //Don't steal stuff kids function OnGetScriptCommands () { commands = "<ScriptCommands>"; commands += "<Command>"; commands += "<Name>back</Name>"; commands += "<Description>Tells all open conversations that you are back.</Description>"; commands += "</Command>"; commands += "</ScriptCommands>"; return commands; } function OnEvent_ChatWndSendMessage(ChatWnd, Message){ if(Message == "/brb"){ ChatWnd.SendMessage("/all Be back in a bit."); } switch (Message){ case "/back": return "/all I'm back. "; } if(Message == "I'm back. "){ ChatWnd.SendMessage("/online"); } }