OsGetGridNick
From OpenSimulator
(Difference between revisions)
| (8 intermediate revisions by 4 users not shown) | |||
| Line 1: | Line 1: | ||
| − | + | {{osslfunc | |
| − | + | |threat_level=None | |
| − | | | + | |permissions=true |
| − | | | + | |delay=0 |
| − | + | |function_syntax=string osGetGridNick() | |
| − | + | |ossl_example=<source lang="lsl"> | |
| − | | | + | |
| − | + | ||
| − | + | ||
| − | | | + | |
| − | + | ||
// | // | ||
// Example of osGetGridNick() | // Example of osGetGridNick() | ||
| Line 22: | Line 17: | ||
} | } | ||
</source> | </source> | ||
| − | | | + | |description=Returns the current grid's nickname as a string. |
| − | + | | | |
| − | + | }} | |
| − | + | ||
| − | + | ||
Latest revision as of 14:12, 1 June 2021
string osGetGridNick()
| |
| Returns the current grid's nickname as a string. | |
| Threat Level | None |
| Permissions | Use of this function is always allowed by default |
| Extra Delay | 0 seconds |
| Example(s) | |
// // Example of osGetGridNick() // returns the value of gridnick = "hippogrid" in OpenSim.ini under [GridInfo] section // default { state_entry() { llSay(0, "Grid Nick Name = "+osGetGridNick()); } } | |