Difference between revisions of "TotalControl for LSL"

From SmartBots Developers Docs
Jump to: navigation, search
(Corrected download link)
 
(11 intermediate revisions by 2 users not shown)
Line 1: Line 1:
SmartBots AdminBot for Bots is a LSL library which allows your LSL script to perform the functions previously available for the  personal bots only!
+
SmartBots TotalControl is a script library to control Second Life bot from LSL script.
[[Image:Adminbot showscreen.jpg|link=|center]]
+
 
 +
[[Image:Totalcontrol-about.jpg|link=|center]]
  
 
== Major Features ==
 
== Major Features ==
 +
 
* Login / Logout your Bot
 
* Login / Logout your Bot
* Send IM, Chat messages with your Bot
+
* Send IMs, chat messages with your Bot
* Send inventory with your Bot
+
* Send inventory
  
See the [[AdminBot_for_Bots/Documentation/Changelog|Changelog]] page for last updates.
+
All you need is to call llMessageLinked LSL function:
  
All these features are available out-of-the-box! You just need to have a personal SmartBot, and have a valid subscription.
+
<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>
  
== Obtaining AdminBot for Bots ==
+
All these features are available out-of-the-box! All you need to is an active personal bot with SmartBots.
You can get AdminBot for Bots in SmartBots Store for free at SL Marketplace: [https://marketplace.secondlife.com/stores/11457 click here].
+
  
== AdminBot for Bots Documentation with Examples ==
+
== Get TotalControl ==
All AdminBot for Bots commands and events are explained at [[AdminBot_for_Bots/Documentation|Documentation]] page.
+
  
Usage examples are available at [[AdminBot_for_Bots/Examples|Examples]] page.
+
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].
  
{{NavMenu}}
+
== 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.
 +
 +
{{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.

Totalcontrol-about.jpg

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.