OsGetGridLoginURI
From OpenSimulator
(Difference between revisions)
m (XEngine to OSSL) |
|||
| (11 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
| − | <source lang="lsl"> | + | {{osslfunc |
| + | |threat_level=Moderate | ||
| + | |permissions=${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
| + | |delay=0 | ||
| + | |function_syntax=string osGetGridLoginURI() | ||
| + | |ossl_example=<source lang="lsl"> | ||
// | // | ||
// Example of osGetGridLoginUri() | // Example of osGetGridLoginUri() | ||
| Line 8: | Line 13: | ||
state_entry() | state_entry() | ||
{ | { | ||
| − | llSay(0, "Grid Login Uri= "+ | + | llSay(0, "Grid Login Uri= "+osGetGridLoginURI()); |
} | } | ||
} | } | ||
</source> | </source> | ||
| − | + | |description=Returns the current grid's login URI as a string. | |
| − | + | | | |
| + | }} | ||
Latest revision as of 06:39, 7 November 2019
string osGetGridLoginURI()
| |
| Returns the current grid's login URI as a string. | |
| Threat Level | Moderate |
| Permissions | ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |
| Extra Delay | 0 seconds |
| 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()); } } | |