OsGetGridLoginURI
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
|||
Line 1: | Line 1: | ||
− | {{osslfunc| | + | {{osslfunc |
− | threat_level = Moderate | + | |threat_level=Moderate |
− | | | + | |function_syntax=osGetGridLoginUri() |
− | function_syntax = | + | |ossl_example=<source lang="lsl"> |
− | osGetGridLoginUri() | + | |
− | + | ||
− | | | + | |
− | ossl_example = <source lang="lsl"> | + | |
// | // | ||
// Example of osGetGridLoginUri() | // Example of osGetGridLoginUri() | ||
Line 19: | Line 15: | ||
} | } | ||
</source> | </source> | ||
− | | | + | |description= |
− | + | ||
| | | | ||
}} | }} |
Revision as of 20:33, 1 July 2011
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()); } } |