Difference between revisions of "TotalControl for LSL/Events/BOT COMMAND FAILED"
From SmartBots Developers Docs
m (Gg moved page TotalControl LSL/Events/BOT COMMAND FAILED to TotalControl for LSL/Events/BOT COMMAND FAILED) |
|||
Line 4: | Line 4: | ||
{{API Event Table}} | {{API Event Table}} | ||
{{API Variable Group|''event'' object properties}} | {{API Variable Group|''event'' object properties}} | ||
− | {{API Variable|str}} first line - [[ | + | {{API Variable|str}} first line - [[Usage/Status_Codes|command status code]]<br>second line - text explaination |
{{API Variable|id}} --- | {{API Variable|id}} --- | ||
Revision as of 06:53, 20 May 2017
Raised when command error occurs.
Reference
This event comes with the following event object:
Variable | Required | Description | |
---|---|---|---|
event object properties: | |||
str | first line - command status code second line - text explaination | ||
id | --- |
Example
link_message(integer sender,integer cmd, string data, key id) {
/////////////////// Bot command failed event
if(cmd==BOT_COMMAND_FAILED) {
// We split the string parameter to the lines
list parts=llParseString2List(data,["\n"],[]);
// The first line is a status code, and second line is the bot expiration date
string code=llList2String(parts,0);
string explain=llList2String(parts,1);
// Inform user
llOwnerSay("AdminBot bot command failed:\n"+
"error code: "+code+"\n"+
"explaination: "+explain);
}
}