OsGetNumberOfNotecardLines
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
m (XEngine to OSSL) |
||
| (5 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
{{osslfunc | {{osslfunc | ||
|threat_level=VeryHigh | |threat_level=VeryHigh | ||
| − | |function_syntax=osGetNumberOfNotecardLines(string name) | + | |permissions=${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |
| − | |ossl_example=<source lang="lsl">// | + | |delay=0 |
| − | default { | + | |function_syntax=integer osGetNumberOfNotecardLines(string name) |
| − | state_entry() { | + | |ossl_example=<source lang="lsl"> |
| − | + | // osGetNumberOfNotecardLines example | |
| + | |||
| + | default | ||
| + | { | ||
| + | state_entry() | ||
| + | { | ||
string notecard = llGetInventoryName(INVENTORY_NOTECARD, 0); | string notecard = llGetInventoryName(INVENTORY_NOTECARD, 0); | ||
| − | + | integer length=osGetNumberOfNotecardLines(notecard); | |
| − | + | llSay(0, "NumberOfNotecardLines is: " + (string) length); | |
| − | + | ||
} | } | ||
} | } | ||
Latest revision as of 06:36, 7 November 2019
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 | ${OSSL|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); } } | |