Difference between revisions of "TotalControl for LSL/Events/BOT NOTECARD READ REPLY"

From SmartBots Developers Docs
Jump to: navigation, search
(Created page with "{{DISPLAYTITLE:BOT_NOTECARD_CREATE_REPLY}} <onlyinclude>Raised when when balance is successfully requested</onlyinclude> {{API Event Table}} {{API Variable Group|''event'' ob...")
 
 
Line 1: Line 1:
{{DISPLAYTITLE:BOT_NOTECARD_CREATE_REPLY}}
+
{{DISPLAYTITLE:BOT_NOTECARD_READ_REPLY}}
 
<onlyinclude>Raised when when balance is successfully requested</onlyinclude>
 
<onlyinclude>Raised when when balance is successfully requested</onlyinclude>
  

Latest revision as of 16:41, 6 March 2019

Raised when when balance is successfully requested

Reference

This event comes with the following event object:

Variable Required Description
event object properties:
str the contents of the notecard
id --

Example

link_message( integer sender_num, integer num, string str, key id ) {
    if(num==BOT_NOTECARD_READ_REPLY) {
    	llOwnerSay("The contents of the notecard is: " + str);
    }
}