LlGetStartParameter
From Second Life Wiki
(Redirected from LSL llGetStartParameter)
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Description
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.
Examples
default { on_rez(integer param) { llOwnerSay("rezzed with the number " + (string)param); } state_entry() { integer i = llGetStartParameter(); if (i == 0) { llOwnerSay("rezzed from inventory (or llRezObject with 0)"); } else { llOwnerSay("I was given the number " + (string)i + " when I was rezzed"); } } }
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 |

