OsGetNumberOfNotecardLines
From OpenSimulator
(Difference between revisions)
m (Added permissions and delay information) |
|||
Line 4: | Line 4: | ||
|delay=0 | |delay=0 | ||
|function_syntax=integer osGetNumberOfNotecardLines(string name) | |function_syntax=integer osGetNumberOfNotecardLines(string name) | ||
− | |ossl_example=<source lang="lsl">// | + | |ossl_example=<source lang="lsl"> |
+ | // osGetNumberOfNotecardLines example | ||
default | default | ||
{ | { |
Revision as of 10:29, 2 April 2018
integer osGetNumberOfNotecardLines(string name)
| |
This function directly reads how many lines a notecard has if the specified notecard exists within the task inventory, bypassing the dataserver event to reduce code complexity. | |
Threat Level | VeryHigh |
Permissions | ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |
Extra Delay | 0 seconds |
Example(s) | |
// osGetNumberOfNotecardLines example default { state_entry() { string notecard = llGetInventoryName(INVENTORY_NOTECARD, 0); integer length=osGetNumberOfNotecardLines(notecard); llSay(0, "NumberOfNotecardLines is: " + (string) length); } } |