OsGetGridLoginURI
From OpenSimulator
(Difference between revisions)
Line 6: | Line 6: | ||
|- valign="top" | |- valign="top" | ||
|'''Function Syntax''' || <source lang="lsl"> | |'''Function Syntax''' || <source lang="lsl"> | ||
− | + | osGetGridLoginUri() | |
</source> | </source> | ||
|- valign="top" | |- valign="top" | ||
Line 27: | Line 27: | ||
[[Category:OSSL Functions]] | [[Category:OSSL Functions]] | ||
[[Category:OSSL functions without threat level]] | [[Category:OSSL functions without threat level]] | ||
− |
Revision as of 11:52, 11 June 2011
OsGetGridLoginURI | |
Threat Level | <Threat Level goes here> |
Function Syntax | osGetGridLoginUri() |
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()); } } |