OsGetNumberOfNotecardLines
From OpenSimulator
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 | 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)); } } } |