Difference between revisions of "TotalControl for LSL"

From SmartBots Developers Docs
Jump to: navigation, search
Line 8: Line 8:
 
* Send IMs, chat messages with your Bot
 
* Send IMs, chat messages with your Bot
 
* Send inventory
 
* Send inventory
 +
 +
<syntaxhighlight lang="lsl">
 +
// Send out group invite on touch
 +
touch_start(integer num) {
 +
    llMessageLinked(LINK_SET, BOT_GROUP_INVITE, groupID + "\n" + roleID, llDetectedKey(0));
 +
}
 +
</syntaxhighlight>
  
 
All these features are available out-of-the-box! All you need to is an active personal bot with SmartBots.
 
All these features are available out-of-the-box! All you need to is an active personal bot with SmartBots.

Revision as of 19:33, 1 March 2019

SmartBots TotalControl is a script library to control Second Life bot from LSL script.

Totalcontrol-about.jpg

Major Features

  • Login / Logout your Bot
  • Send IMs, chat messages with your Bot
  • Send inventory
// Send out group invite on touch
touch_start(integer num) {
    llMessageLinked(LINK_SET, BOT_GROUP_INVITE, groupID + "\n" + roleID, 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.