OsGetGridLoginURI
From OpenSimulator
(Difference between revisions)
m (changed osGetGridLoginUri to osGetGridLoginURI as osGetGridLoginURI is the correct function name.) |
|||
Line 11: | Line 11: | ||
state_entry() | state_entry() | ||
{ | { | ||
− | llSay(0, "Grid Login Uri= "+ | + | llSay(0, "Grid Login Uri= "+osGetGridLoginURI()); |
} | } | ||
} | } |
Revision as of 21:02, 13 January 2012
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()); } } |