OsGetGridLoginURI
From OpenSimulator
(Difference between revisions)
m (changed osGetGridLoginUri to osGetGridLoginURI as osGetGridLoginURI is the correct function name.) |
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 osGetGridLoginURI() | |function_syntax=string osGetGridLoginURI() | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> |
Revision as of 18:54, 25 October 2017
string osGetGridLoginURI()
| |
Returns the current grid's login URI as a string. | |
Threat Level | Moderate |
Permissions | ${XEngine|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |
Extra Delay | 0 seconds |
Example(s) | |
// // Example of osGetGridLoginUri() // returns the value of loginuri = "http://GRIDDOMAINorIP:8002" in OpenSim.ini under [GridInfo] section // default { state_entry() { llSay(0, "Grid Login Uri= "+osGetGridLoginURI()); } } |