OsGetGridGatekeeperURI
From OpenSimulator
(Difference between revisions)
(Created page with "{{osslfunc |threat_level=Moderate |function_syntax=string osGetGridGatekeeperURI() |ossl_example=<source lang="lsl"> // // Example of osGetGridGatekeeperUri() // returns the valu...") |
|||
| (7 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
{{osslfunc | {{osslfunc | ||
|threat_level=Moderate | |threat_level=Moderate | ||
| + | |permissions=${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER | ||
| + | |delay=0 | ||
|function_syntax=string osGetGridGatekeeperURI() | |function_syntax=string osGetGridGatekeeperURI() | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
// | // | ||
// Example of osGetGridGatekeeperUri() | // Example of osGetGridGatekeeperUri() | ||
| − | |||
| − | |||
// | // | ||
default | default | ||
| Line 12: | Line 12: | ||
state_entry() | state_entry() | ||
{ | { | ||
| − | llSay(0, "Grid | + | llSay(0, "Grid Gatekeeper Uri= "+osGetGridGatekeeperURI()); |
} | } | ||
} | } | ||
</source> | </source> | ||
| − | |description=Returns the current grid's Gatekeeper URI as a string. | + | |description=Returns the current grid's Gatekeeper URI as a string. If HG is not configured, returns empty string. |
| − | | | + | |additional_info=This function was added in 0.7.4-post-fixes |
}} | }} | ||
Latest revision as of 05:23, 26 September 2020
string osGetGridGatekeeperURI()
| |
| Returns the current grid's Gatekeeper URI as a string. If HG is not configured, returns empty string. | |
| Threat Level | Moderate |
| Permissions | ${OSSL|osslParcelO}ESTATE_MANAGER,ESTATE_OWNER |
| Extra Delay | 0 seconds |
| Example(s) | |
// // Example of osGetGridGatekeeperUri() // default { state_entry() { llSay(0, "Grid Gatekeeper Uri= "+osGetGridGatekeeperURI()); } } | |
| Notes | |
| This function was added in 0.7.4-post-fixes | |