RE: [request] turn a script on/ off for individual chats...
u can do it by selecting the emails u want it to work for:
var e = new Enumerator(ChatWnd.Contacts);
var Cnt = e.item();
now Cnt.Email stands for the Contact's (the one u typed command for) email, so for example u want it to work for somenone like: someone@somewhat.com u can use:
if (Cnt.Email == someone@somewhat.com) { do this }
|