O.P. RE: script command
I am really sorry I still have a small problem, there is a fault in my script but I do not find or… thank you in advance:
// vous etes une star et personne autour de vous ne s'en rends compte ?
// vous avez le cafard et vous avez besoin de compliment ?
// vous souhaitez avoir l'impression que tout le monde vous respecte ?
// master est fait pour vous !!!!!!
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
var tab=new Array("tu es le meilleur !!!!", "gloire a toi !!!", "t'es une star !!!", "t'es tro un boss !!!","tu est le maitre incontesté !!!");
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
var a = "master";
var b = " prenom";
function OnEvent_Initialize(MessengerStart)
{
}
function OnEvent_ChatWndSendMessage(ChatWnd,Message)
{
if(Message=="master")
{
MsgPlus.DisplayToast(a,tab[Math.floor(Math.random() * tab.length)] + b);
MsgPlus.DisplayToast(a,tab[Math.floor(Math.random() * tab.length)] );
MsgPlus.DisplayToast(a,tab[Math.floor(Math.random() * tab.length)] );
}
notify("tu es le maitre");
return '';
}
function OnGetScriptCommands ()
{
commands = "<ScriptCommands>";
commands += "<Command>";
commands += "<Name>master</Name>";
commands += "<Description>commande maitre</Description>";
commands += "</Command>";
commands += "</ScriptCommands>";
return commands;
}
function OnEvent_Uninitialize(MessengerExit)
{
}
|