Hi,
I was wondering if someone could please debug a function.
Simply when a message is received, it's supposed to say Test and close the chat window, except it just keeps on sending the same test message every second and it does not close the window.
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
ChatWnd.SendMessage("Test");
PlusWnd.Close(0);
}