LlGetStartParameter
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Tutorials |
Summary
Function: integer llGetStartParameter( );| 134 | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Returns an integer that is the script start/rez parameter.
- If the script was loaded with llRemoteLoadScriptPin then that start parameter is returned.
- If the containing object was rezzed by llRezObject or llRezAtRoot then the return is the on_rez parameter.
Caveats
Examples
default { on_rez(integer param) { llOwnerSay("rezzed with the number " + (string)param); } state_entry() { integer i = llGetStartParameter(); if (i) { llOwnerSay("I was given the number " + (string)i + " when I was rezzed"); } else { llOwnerSay("rezzed from inventory (or rezzed/loaded with 0)"); } } }
See Also
Events
| • | on_rez |
Functions
| • | llRemoteLoadScriptPin | – | Used to load a script into a remote prim | |
| • | llRezObject | – | Used to rez an object at the center of mass | |
| • | llRezAtRoot | – | Used to rez an object at the root |
Deep Notes
Issues
~ Search JIRA for related Issues| | | SVC-2251 | [c] | llGetStartParameter returns zero after sim restart | |
| | | SVC-3258 | [c] | llGetStartParameter returns zero after change of region |
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

