OsGetNumberOfNotecardLines
From OpenSimulator
(Difference between revisions)
| Line 1: | Line 1: | ||
| − | {| | + | {{osslfunc| |
| − | + | threat_level = VeryHigh | |
| − | | | + | | |
| − | + | function_syntax = <source lang="lsl"> | |
| − | + | ||
| − | + | ||
| − | + | ||
osGetNumberOfNotecardLines(string name) | osGetNumberOfNotecardLines(string name) | ||
</source> | </source> | ||
| − | | | + | | |
| − | + | ossl_example = <source lang="lsl">//Example usage: | |
default { | default { | ||
state_entry() { | state_entry() { | ||
| Line 20: | Line 17: | ||
} | } | ||
</source> | </source> | ||
| − | + | | | |
| − | | | + | additional_info = 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. |
| − | + | | | |
| − | 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. | + | }} |
| − | + | ||
| − | + | ||
Revision as of 15:09, 12 June 2011
osGetNumberOfNotecardLines(string name) | |
| No descriptions provided | |
| Threat Level | VeryHigh |
| Permissions | No permissions specified |
| Extra Delay | No function delay specified |
| Example(s) | |
//Example usage: default { state_entry() { integer i; string notecard = llGetInventoryName(INVENTORY_NOTECARD, 0); for(i=1; i<=osGetNumberOfNotecardLines(notecard); i++) { llSay(0, osGetNotecardLine(notecard, i)); } } } | |
| Notes | |
| 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. | |