quote:
Originally posted by pantoled
hum… hello,
here I have a problême with a script which I have create (who am very simple, it just allows to send of Popups): It do not have nothing bug, but only… How I make to find it in the menu of my orders? i.e. an order: /MaCommande could you help me pleaze? (my English is bad, sorry)
I don't know if i understand...But if i understand well you would want to display your command in the list...right??(See the image)
If you want to do it...Use this code:
code:
function OnGetScriptCommands(){
var commands = "<ScriptCommands>";
commands += " <Command>"
commands += " <Name>mycommande</Name>"
commands += " <Description>"Your Description"</Description>"
commands += " </Command>"
commands += "</ScriptCommands>"
return commands;
}