OsIsUUID
From OpenSimulator
(Difference between revisions)
m (Added permissions and delay information) |
|||
Line 1: | Line 1: | ||
{{osslfunc | {{osslfunc | ||
|function_syntax=LSLInteger osIsUUID(String thing) | |function_syntax=LSLInteger osIsUUID(String thing) | ||
− | |threat_level= | + | |threat_level=ignored |
+ | |permissions=true | ||
+ | |delay=0 | ||
|description=Returns 1 if the supplied string is a valid UUID, returns 0 otherwise. | |description=Returns 1 if the supplied string is a valid UUID, returns 0 otherwise. | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> |
Revision as of 11:30, 25 October 2017
LSLInteger osIsUUID(String thing)
| |
Returns 1 if the supplied string is a valid UUID, returns 0 otherwise. | |
Threat Level | This function does not do a threat level check |
Permissions | Use of this function is always allowed by default |
Extra Delay | 0 seconds |
Example(s) | |
default { state_entry() { key good_key = "09090909-1111-2222-3213-874598734592"; key bad_key = "8e9a6ed1-e2f4-4735-8132-e027bbcd27g1"; llOwnerSay((string)osIsUUID(good_key)); llOwnerSay((string)osIsUUID(bad_key)); } } |