OsGetGridLoginURI
From OpenSimulator
(Difference between revisions)
m (some syntax modification (may be major or minor)) |
|||
| Line 15: | Line 15: | ||
} | } | ||
</source> | </source> | ||
| − | |description= | + | |description=Returns the current grid's login URI as a string. |
| | | | ||
}} | }} | ||
Revision as of 10:59, 30 July 2011
string osGetGridLoginURI()
| |
| Returns the current grid's login URI as a string. | |
| 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()); } } | |