The scriptMenu function looks like this
code:
function OnGetScriptCommands()
{
var ScriptCommands = "<ScriptCommands>";
ScriptCommands += "<Command>";
ScriptCommands += "<Name>act</Name>";
ScriptCommands += "<Description>Send a custom action message that doesn't start with your name.</Description>";
ScriptCommands += "<Parameters><Message></Parameters>";
ScriptCommands += "</Command>";
ScriptCommands += "</ScriptCommands>";
return ScriptCommands;
}
but when i type "/act Hello" it pops up saying "The Command You Entered Requiers a Parameter"
if you need to see the command parsing function just tell me.
Thanks