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...") |
|||
Line 12: | Line 12: | ||
state_entry() | state_entry() | ||
{ | { | ||
− | llSay(0, "Grid | + | llSay(0, "Grid Gatekeeper Uri= "+osGetGridGatekeeperURI()); |
} | } | ||
} | } |
Revision as of 20:02, 10 March 2012
string osGetGridGatekeeperURI()
| |
Returns the current grid's Gatekeeper URI as a string. | |
Threat Level | Moderate |
Permissions | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
// // Example of osGetGridGatekeeperUri() // returns the value of Gatekeeper in [GridService] section // for both standalone and grids. // default { state_entry() { llSay(0, "Grid Gatekeeper Uri= "+osGetGridGatekeeperURI()); } } |