Thx, but now i have this script:
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message, MessageKind)
{
MsgPlus.AddTimer("yoyo", 1000)
if (Message == "=D")
{
ChatWnd.SendMessage(":')");
function OnEvent_Timer(TimerId)
{
if (TimerId == "yoyo")
{
ChatWnd.SendMessage("jeej");
//Timer interval has been met.
}
}
}
}
But the timer won't work. I don't get it.
(Srry for tree, but the code tags filters tabs
)