quote:
Originally posted by hmaster
I think you can use this:
code:
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
var Contacts = ChatWnd.Contacts;
var e = new Enumerator(Contacts);
for(; !e.atEnd(); e.moveNext()) {
var Contact = e.item();
Debug.Trace(" " + Contact.Email);
}
}
It should get all participants in a conversation.
That displays the email, if you want their nickname instead use:
Contact.Name
and their PSM:
Contact.PersonalMessage
You can find more here:
http://www.mpscripts.net/docs.php