StringIsValidKey
Jump to navigation
Jump to search
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
This will not check if the key given actually references an asset, agent/group, instance, or terrain). Checks with other functions and the given key can be used for this.
<lsl> key temp = (key) input;
if(temp) llOwnerSay("Input is a valid key!"); else llOwnerSay("Input is not a valid key!"); </lsl>