activateGroup
From SmartBots Developers Docs
Revision as of 19:54, 2 July 2016 by Phil (Talk | contribs) (Created page with "{{DISPLAYTITLE:{{SUBPAGENAME}}}} <onlyinclude>Activates a specific group (for example, to get build rights on the parcel).</onlyinclude> <syntaxhighlight lang="javascript"> B...")
Activates a specific group (for example, to get build rights on the parcel).
Bot.activateGroup(location);
Reference
This command accepts the following parameters:
Variable | Required | Description
| |
---|---|---|---|
Input: | |||
groupuuid | yes | the UUID of the group to activate
Special values:
Obliviously, the bot has to be a member of the group already to activate it. | |
Output: | |||
Function returns a Promise with the following data: | |||
success | bool | true if command completed successfully | |
error | string | error string if command has failed |
Examples
1. Set the active group to match current parcel's group. This can be used to get rights to rez items.
Bot.activateGroup("LAND");
2. Remove active group from the bot (sets the active group to none):
Bot.activateGroup("00000000-0000-0000-0000-000000000000");