BOT_ATTACHMENTS_REPLY

From SmartBots Developers Docs
TotalControl for LSLEvents
Revision as of 08:26, 20 May 2017 by Chevonn Edelmann (Talk | contribs) (Created page with "{{DISPLAYTITLE:BOT_ATTACHMENTS_REPLY}} <onlyinclude>Raised when Bot receives list of attachments</onlyinclude> {{API Event Table}} {{API Variable Group|''event'' object prope...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Raised when Bot receives list of attachments

Reference

This event comes with the following event object:

Variable Required Description
event object properties:
str List of attachments in the format "uuid name \n uuid name...."
id ---

Example

link_message( integer sender_num, integer num, string str, key id ) {
    /////////////////// Bot attachments reply event
    if(num==BOT_ATTACHMENTS_REPLY) {
        // Parse each attachment separated by a new line "\n"
        list attachments = llParseString2List(str, ["\n"], []);

        // Parse each uuid name combo separated by a space
        for(integer count =0; count < llGetListLength(attachments); count++) {
            list subAttachment = llParseString2List(llList2String(attachments, count), [" "], []);
            llOwnerSay("UUID: " + llList2String(subAttachment, 0));
            llOwnerSay("Name: " + llList2String(subAttachment, 1));
        }
    }
}