OsGetGridName
From OpenSimulator
(Difference between revisions)
(New page: // // Example of osGetGridName() // returns the value of gridname = "Hippogrid" in OpenSim.ini under [GridInfo] section // default { state_entry() { llSay(0, "Grid Name = "+o...) |
|||
(12 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{osslfunc | ||
+ | |threat_level=None | ||
+ | |permissions=true | ||
+ | |delay=0 | ||
+ | |function_syntax=string osGetGridName() | ||
+ | | | ||
+ | ossl_example =<source lang="lsl"> | ||
// | // | ||
// Example of osGetGridName() | // Example of osGetGridName() | ||
Line 10: | Line 17: | ||
} | } | ||
} | } | ||
+ | </source> | ||
+ | |description=Returns the current grid's name as a string. | ||
+ | | | ||
+ | }} |
Latest revision as of 14:13, 1 June 2021
string osGetGridName()
| |
Returns the current grid's name as a string. | |
Threat Level | None |
Permissions | Use of this function is always allowed by default |
Extra Delay | 0 seconds |
Example(s) | |
// // Example of osGetGridName() // returns the value of gridname = "Hippogrid" in OpenSim.ini under [GridInfo] section // default { state_entry() { llSay(0, "Grid Name = "+osGetGridName()); } } |