llGetScriptState

From Second Life Wiki
Revision as of 07:21, 2 December 2012 by Kireji Haiku (talk | contribs)
Jump to navigation Jump to search

Summary

Function: integer llGetScriptState( string script );

Returns an integer boolean that is TRUE if the script is running.

• string script a script in the inventory of the prim this script is in

Caveats

  • If script is missing from the prim's inventory or it is not a script then an error is shouted on DEBUG_CHANNEL.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl> default {

   touch_start(integer num_detected)
   {
       integer numberOfScripts = llGetInventoryNumber(INVENTORY_SCRIPT);
       integer index;
       do
       {
           string scriptName = llGetInventoryName(INVENTORY_SCRIPT, index);
           integer scriptState = llGetScriptState(scriptName);
       //  default value
           string output = "FALSE";
       //  else
           if (scriptState) output = "TRUE";
           // PUBLIC_CHANNEL has the integer value 0
           llSay(PUBLIC_CHANNEL,
               "Script named '" + scriptName + "' has current script state '" + output + "'.");
       }
       while (++index < numberOfScripts);
   }

}

</lsl>

See Also

Functions

•  llSetScriptState
•  llResetOtherScript

Deep Notes

History

Search JIRA for related Issues

Signature

function integer llGetScriptState( string script );