OsGetGridHomeURI
From OpenSimulator
(Difference between revisions)
m (Added permissions and delay information) |
|||
Line 1: | Line 1: | ||
{{osslfunc | {{osslfunc | ||
|threat_level=Moderate | |threat_level=Moderate | ||
+ | |permissions=${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
+ | |delay=0 | ||
|function_syntax=string osGetGridHomeURI() | |function_syntax=string osGetGridHomeURI() | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> |
Revision as of 18:53, 25 October 2017
string osGetGridHomeURI()
| |
Returns the current grid's home URI as a string. | |
Threat Level | Moderate |
Permissions | ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |
Extra Delay | 0 seconds |
Example(s) | |
// // Example of osGetGridHomeUri() // returns the value of SRV_HomeURI in OpenSim.ini under [GridInfo] section // for standalone. For grids, this will be the value set in the Robust ini. // default { state_entry() { llSay(0, "Grid Home Uri= "+osGetGridHomeURI()); } } |