I tried adding it to this mate
code:
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message,MsgKind){
if(Origin!=Messenger.MyName){ // If the receive message isn't send by you
if(Message.indexOf("[read]")>0){
sendstatus(ChatWnd);
return Message.substr(0,Message.indexOf("[read"));
}
}
But when I test it say I'm A sending the commands i see it like
A says: hai [read]
B says:
And B see's it like
A says: hai
B says: Online
But I'm supposed to see it like
A says: hai [read]
B says: Online
and B is supposed to see it like
A says: hai
B says:
Regards,
CH