Difference between revisions of "TotalControl for LSL/Commands/BOT SAY CHAT"

From SmartBots Developers Docs
Jump to: navigation, search
m
m
 
Line 13: Line 13:
  
 
<syntaxhighlight lang="lsl">
 
<syntaxhighlight lang="lsl">
llMessageLinked(LINK_SET, BOT_SAY_CHAT,"Sending this to local chat","0");
+
llMessageLinked(LINK_SET, BOT_SAY_CHAT, "Sending this to local chat", "0");
 
</syntaxhighlight>
 
</syntaxhighlight>
  

Latest revision as of 05:42, 19 May 2017

Commands bot to say a message on the specified channel

Variables

The following table shows input values (you send them with the API call) and returned output values.

Variable Required Description


str yes message to send
id yes channel to say message on

Example

llMessageLinked(LINK_SET, BOT_SAY_CHAT, "Sending this to local chat", "0");