O NO i done something by accident with your script i switched everything that was merlin to genie and then i set it all back to merlin
and now i gt the genie o no o wait yay i figured out what i done to change the characters
if you want to change the characters when there the bit that says
code:
Agents.Characters.Load("Merlin","C:\\WINDOWS\\msagent\\chars\\Merlin.acs");
change it to
code:
Agents.Characters.Load("Merlin","C:\\WINDOWS\\msagent\\chars\\Genie.acs");
to make it the genie and you also have to have the genie character downloaded as well
EDIT: wow i found another thing out as well if you want the ms agent to tell you when someone signs out add this to the code
code:
function OnEvent_ContactSignOut(Email){
var contactmail = Email;
signedincontact = Messenger.MyContacts.GetContact(contactmail);
if(signedincontact.Blocked!=true){
merlin.Show();
merlin.Play("GetAttention");
merlin.Play("GetAttentionReturn");
merlin.Play("RestPose");
merlin.Speak(signedincontact.Name+" Has just Signed out");
merlin.Hide();
}
}