OsGetGridLoginURI
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
m (some syntax modification (may be major or minor)) |
||
| Line 1: | Line 1: | ||
{{osslfunc | {{osslfunc | ||
|threat_level=Moderate | |threat_level=Moderate | ||
| − | |function_syntax= | + | |function_syntax=string osGetGridLoginURI() |
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
// | // | ||
Revision as of 02:29, 2 July 2011
string osGetGridLoginURI()
| |
| No descriptions provided | |
| Threat Level | Moderate |
| Permissions | No permissions specified |
| Extra Delay | No function delay specified |
| 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()); } } | |