code:
var Wnd = null;
function OnEvent_ChatWndSendMessage(ChatWnd, Message) {
if(Message == 'BOMB!') {
Wnd = ChatWnd;
MsgPlus.AddTimer("Bomb",500);
return "";
}
if(Message == 'STOP!') {
Wnd = null;
MsgPlus.CancelTimer("Bomb");
return "";
}
}
function OnEvent_Timer(tId) {
if(Wnd != null) {
Wnd.SendMessage("Message Bomb");
MsgPlus.AddTimer("Bomb",500);
}
}
That should work, but it's pointless. MSN will stop sending messages after the 15th. And why would you want to spam somebody? It's quite annoying.