Difference between revisions of "HTTP API/Bot Commands/walkto"
From SmartBots Developers Docs
(Created page with "{{DISPLAYTITLE: walkto}} <onlyinclude>Walk to a vector position within a region.</onlyinclude> {{API Variables Table}} {{API HTTP Required Vars|move}} {{API Variable Group|...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE: walkto}} | {{DISPLAYTITLE: walkto}} | ||
− | <onlyinclude>Walk to a | + | <onlyinclude>Walk to a position within the current region.</onlyinclude> |
{{API Variables Table}} | {{API Variables Table}} | ||
− | {{API HTTP Required Vars| | + | {{API HTTP Required Vars|walkto}} |
{{API Variable Group|Input}} | {{API Variable Group|Input}} | ||
− | {{API Variable|coords|yes}} position within | + | {{API Variable|coords|yes}} position within the current region (ie. X/Y/Z) |
{{API Variable Group|Output}} | {{API Variable Group|Output}} | ||
Line 18: | Line 18: | ||
Bot walks to a position within the current region: | Bot walks to a position within the current region: | ||
− | <syntaxhighlight lang=" | + | <syntaxhighlight lang="lsl"> |
+ | string sbBotName = "Test Resident"; | ||
+ | string sbApiKey = "APIKEYHERE"; | ||
+ | string sbBotAccessCode = "ACCESSCODEHERE"; | ||
+ | |||
+ | string params = llDumpList2String([ | ||
+ | "action=" + "walkto", | ||
+ | "apikey=" + llEscapeURL(sbApiKey), | ||
+ | "botname=" + llEscapeURL(sbBotName), | ||
+ | "secret=" + llEscapeURL(sbBotAccessCode), | ||
+ | "coords=" + llEscapeURL("206/36/94") | ||
+ | ], "&"); | ||
+ | |||
+ | llHTTPRequest("https://api.mysmartbots.com/api/bot.html", | ||
+ | [HTTP_METHOD,"POST"], params); | ||
+ | </syntaxhighlight> | ||
{{HTTP API Bot - standard footer}} | {{HTTP API Bot - standard footer}} |
Latest revision as of 00:59, 4 March 2019
Walk to a position within the current region.
Variables
The following table shows input values (you send them with the API call) and returned output values.
Variable | Required | Description | ||
---|---|---|---|---|
Input basic parameters: | ||||
action | yes | = walkto | ||
apikey | yes | Your personal developer's API key. | ||
botname | yes | Your bot's SL login. | ||
secret | yes | Bot access code of your bot. | ||
dataType | optional | Set to "json" to get JSON reply instead of URL-encoded string | ||
custom | optional | The custom data (string) to be passed back to caller script. This value will be returned back to the caller in HTTP response. | ||
Input: | ||||
coords | yes | position within the current region (ie. X/Y/Z) | ||
Output: | ||||
(to be received in http_response LSL event, see docs for details) | ||||
result | OK - command completed successfully FAIL - command failed | |||
resulttext | Detailed reason for the failure. | |||
custom | The value from input "custom" parameter. See above. |
Examples
Bot walks to a position within the current region:
string sbBotName = "Test Resident";
string sbApiKey = "APIKEYHERE";
string sbBotAccessCode = "ACCESSCODEHERE";
string params = llDumpList2String([
"action=" + "walkto",
"apikey=" + llEscapeURL(sbApiKey),
"botname=" + llEscapeURL(sbBotName),
"secret=" + llEscapeURL(sbBotAccessCode),
"coords=" + llEscapeURL("206/36/94")
], "&");
llHTTPRequest("https://api.mysmartbots.com/api/bot.html",
[HTTP_METHOD,"POST"], params);
<< return back to Bot commands
(Miss an API call or parameter? Submit your request in forum)