code:
function OnEvent_ChatWndSendMessage(ChatWnd,Message){
if(Message.substr(0,7) == "/manger"){
notify("Bon appétit ");
Messenger.MyStatus = 9;
Debug.Trace("Statut changé en 'lunch' (9)");
return '/all Je vais manger ! A + !';
}
if(Message.substr(0,5) == "/dodo"){
notify("Bonne nuit ");
Messenger.MyStatus = 7;
notify("ATTENTION: vous etes toujours en ligne avec le statut Occupé.");
Debug.Trace("Statut changé en 'away' (7)");
return '/all Je vais coucher ! A + !';
}
if(Message.substr(0,4) == "/fou"){
notify("Vous êtes fou ?!?");
return '/all Je suis fou, tu le savais ?!?';
}
if(Message.substr(0,7) == "/retour"){
notify("Vraiment content de vous revoir ");
Messenger.MyStatus = 3;
Debug.Trace("Statut changé en 'online' (3)");
return '/all Je suis de retour !!';
}
if(Message.substr(0,7) == "/occupé"){
notify("Je vous laisse tranquille alors ");
Messenger.MyStatus = 4;
Debug.Trace("Statut changé en 'busy' (4)");
return 'Désolé ... je suis occupé ';
}
if(Message.substr(0,7) == "/occupe"){
notify("Je vous laisse tranquille alors ");
Messenger.MyStatus = 4;
Debug.Trace("Statut changé en 'busy' (4)");
return 'Désolé ... je suis occupé ';
}
}
// DIVERS
function notify(msg){
msg = MsgPlus.RemoveFormatCodes(msg);
MsgPlus.DisplayToast("TextsPersos", msg, "Peace And Love ");
}
function OnEvent_Initialize(MessengerStart)
{
notify("Bienvenue ");
Messenger.MyStatus = 3;
Debug.Trace("TEXTPERSOS est lancé. STATUS EN LIGNE");
}
function OnEvent_Uninitialize(MessengerExit)
{
notify("Bye bye ");
Debug.Trace("TEXTPERSOS est arrété.");
}
function OnGetScriptCommands(){
var commands = '<ScriptCommands>';
commands+='<Command>';
commands+='<Name>manger</Name>';
commands+='<Description>Signaler a vos contacts que vous partez manger.</Description>';
commands+='</Command>';
commands+='<Command>';
commands+='<Name>dodo</Name>';
commands+='<Description>Signaler a vos contacts que vous partez au dodo.</Description>';
commands+='</Command>';
commands+='<Command>';
commands+='<Name>fou</Name>';
commands+='<Description>Signalez a vos contacts que vous êtes complètement fou !</Description>';
commands+='</Command>';
commands+='<Command>';
commands+='<Name>retour</Name>';
commands+='<Description>Signalez a vos contacts que vous êtes de retour !</Description>';
commands+='</Command>';
commands+='<Command>';
commands+='<Name>occupé</Name>';
commands+='<Description>Signalez a votre contacts que vous êtes occupé !</Description>';
commands+='</Command>';
commands+='</ScriptCommands>';
return commands;
}
Use that code code. Just make sure everything is done before returning, nothing can be done after returning
.