Difference between revisions of "TotalControl for LSL/Commands/BOT OFFER FRIENSHIP"
From SmartBots Developers Docs
(Blanked the page) |
|||
| Line 1: | Line 1: | ||
| + | {{DISPLAYTITLE:BOT_OFFER_FRIENDSHIP }} | ||
| + | <onlyinclude>Commands bot to offer friendship to someone</onlyinclude> | ||
| + | {{API Variables Table}} | ||
| + | |||
| + | {{AdminBot Required Vars|BOT_OFFER_FRIENDSHIP }} | ||
| + | {{API Variable|str|yes}} message to send along with the friendship offer | ||
| + | {{API Variable|id|yes}} uuid of person to send friend request to | ||
| + | |||
| + | {{API Variables Table End}} | ||
| + | |||
| + | == Example == | ||
| + | |||
| + | <syntaxhighlight lang="lsl"> | ||
| + | llMessageLinked(LINK_SET, BOT_OFFER_FRIENDSHIP , "Please add me as a friend", "uuid of person goes here"); | ||
| + | </syntaxhighlight> | ||
| + | |||
| + | {{AdminBot for Bots Commands - standard footer}} | ||
| + | |||
| + | {{NavMenu}} | ||
| + | |||
| + | __NOTOC__ | ||
Revision as of 18:08, 20 October 2021
Commands bot to offer friendship 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 | message to send along with the friendship offer | |
| id | yes | uuid of person to send friend request to | |
Example
llMessageLinked(LINK_SET, BOT_OFFER_FRIENDSHIP , "Please add me as a friend", "uuid of person goes here");