Difference between revisions of "TotalControl for LSL/Commands/BOT UNFRIEND"

From SmartBots Developers Docs
Jump to: navigation, search
(Created page with "{{DISPLAYTITLE:BOT_UNFRIEND}} <onlyinclude>Commands bot to unfriend to someone</onlyinclude> {{API Variables Table}} {{AdminBot Required Vars|BOT_UNFRIEND}} {{API Variable|s...")
 
 
Line 5: Line 5:
  
 
{{AdminBot Required Vars|BOT_UNFRIEND}}
 
{{AdminBot Required Vars|BOT_UNFRIEND}}
{{API Variable|str|yes}} uuid of person to unfriend
+
{{API Variable|str|yes}} --
{{API Variable|id|yes}} --
+
{{API Variable|id|yes}} uuid of person to unfriend
  
 
{{API Variables Table End}}
 
{{API Variables Table End}}
Line 13: Line 13:
  
 
<syntaxhighlight lang="lsl">
 
<syntaxhighlight lang="lsl">
llMessageLinked(LINK_SET, BOT_UNFRIEND , "uuid goes here", "");
+
llMessageLinked(LINK_SET, BOT_UNFRIEND, "", "uuid goes here");
 
</syntaxhighlight>
 
</syntaxhighlight>
  

Latest revision as of 10:18, 4 March 2019

Commands bot to unfriend to someone

Variables

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

Variable Required Description


str yes --
id yes uuid of person to unfriend

Example

llMessageLinked(LINK_SET, BOT_UNFRIEND, "", "uuid goes here");