Difference between revisions of "TotalControl for LSL"
From SmartBots Developers Docs
(Replaced Adminbots for bots) |
(Corrected download link) |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | SmartBots TotalControl is a | + | SmartBots TotalControl is a script library to control Second Life bot from LSL script. |
− | [[Image: | + | |
+ | [[Image:Totalcontrol-about.jpg|link=|center]] | ||
== Major Features == | == Major Features == | ||
+ | |||
* Login / Logout your Bot | * Login / Logout your Bot | ||
− | * Send | + | * Send IMs, chat messages with your Bot |
− | * Send inventory | + | * Send inventory |
− | + | All you need is to call llMessageLinked LSL function: | |
− | + | <syntaxhighlight lang="lsl"> | |
+ | // Send out group invite on touch | ||
+ | touch_start(integer num) { | ||
+ | llMessageLinked(LINK_SET, BOT_GROUP_INVITE, groupUUID + "\n" + roleUUID, llDetectedKey(0)); | ||
+ | } | ||
+ | </syntaxhighlight> | ||
− | + | All these features are available out-of-the-box! All you need to is an active personal bot with SmartBots. | |
− | + | ||
− | == TotalControl for LSL | + | == Get TotalControl == |
− | All TotalControl commands and events are explained at [[ | + | |
+ | Get TotalControl for free in SmartBots Store at the SL Marketplace: [https://marketplace.secondlife.com/p/TotalControl-LSL-Library-for-Second-Life-bots-move-talk-and-much-more/16812622 click here]. | ||
+ | |||
+ | == TotalControl reference == | ||
+ | |||
+ | All TotalControl commands and events are explained at [[Usage|Documentation]] page. | ||
+ | |||
+ | == TotalControl examples == | ||
Usage examples are available at [[TotalControl for LSL/Examples|Examples]] page. | Usage examples are available at [[TotalControl for LSL/Examples|Examples]] page. | ||
{{NavMenu}} | {{NavMenu}} | ||
− | |||
__NOTOC__ | __NOTOC__ |
Latest revision as of 11:01, 7 March 2019
SmartBots TotalControl is a script library to control Second Life bot from LSL script.
Major Features
- Login / Logout your Bot
- Send IMs, chat messages with your Bot
- Send inventory
All you need is to call llMessageLinked LSL function:
// Send out group invite on touch
touch_start(integer num) {
llMessageLinked(LINK_SET, BOT_GROUP_INVITE, groupUUID + "\n" + roleUUID, llDetectedKey(0));
}
All these features are available out-of-the-box! All you need to is an active personal bot with SmartBots.
Get TotalControl
Get TotalControl for free in SmartBots Store at the SL Marketplace: click here.
TotalControl reference
All TotalControl commands and events are explained at Documentation page.
TotalControl examples
Usage examples are available at Examples page.