SB_NOTICE_SEND
Sends out the group notice.
Variables
The following table shows input values (you send them with the API call) and returned output values.
Variable | Required | Description
| |
---|---|---|---|
str | yes | First line - notice subject
Rest of the string - notice text. | |
id | yes | Attachment inventory ID (optional) |
Comments
This command delivers the notice to the group, accompanied with optional attachment:
key inventoryID = "b38b71a1-60a6-b109-75f2-8a22f68e7851";
llMessageLinked(LINK_SET, SB_NOTICE_SEND,
"This is a subject line" + "\n" +
"This is a body,\nprobably multiline",
inventoryID);
Using attachments
The notice attachment UUID can be copied from the bot's inventory in SmartBots account:
- Open account dashboard
- Click on "auto notices" link within your group:
- Open "Inventory" tab
- Locate your inventory item and click "inventory UUID: click to show":
Important notes
1. Subject and text limitations
Please remember that notice subject is limited to latin letters and numbers only, and maximum length is 254 single-byte characters.
The notice text can contain international characters, the maximum length is 512 bytes. See Second Life wiki for details.
2. Attachment permissions
Your bot have to have both "Copy" and "Transfer" permissions to send out your attachments (the "next owner permissions" can be set to any value).
The inventory permissions can be verified and updated on Inventory page:
Example
key inventoryID = "b38b71a1-60a6-b109-75f2-8a22f68e7851";
llMessageLinked(LINK_SET, SB_NOTICE_SEND,
"This is a subject line" + "\n" +
"This is a body,\nprobably multiline",
inventoryID);