code:
// 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_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 () {
var commands = "<ScriptCommands>";
commands += " <Command>";
commands += " <Name>master</Name>";
commands += " <Description>commande maitre</Description>";
commands += " </Command>";
commands += "</ScriptCommands>";
return commands;
}
Why is the bolded line not defined? Are you trying to open an alert box like using alert() in javascript?