OsGetGridNick
From OpenSimulator
(Difference between revisions)
Line 1: | Line 1: | ||
− | <source lang="lsl"> | + | {| width="100%" style="border: thin solid black" |
+ | | colspan="2" align="center" style=background:orange | '''{{SUBPAGENAME}}''' | ||
+ | |- valign="top" | ||
+ | |'''Threat Level''' || <Threat Level goes here> | ||
+ | |||
+ | |- valign="top" | ||
+ | |'''Function Syntax''' || <source lang="lsl"> | ||
+ | |||
+ | </source> | ||
+ | |- valign="top" | ||
+ | |'''Example(s)||<source lang="lsl"> | ||
// | // | ||
// Example of osGetGridNick() | // Example of osGetGridNick() | ||
Line 12: | Line 22: | ||
} | } | ||
</source> | </source> | ||
+ | |} | ||
− | [[Category:OSSL]] | + | [[Category:OSSL Functions]] |
[[Category:OSSL functions without threat level]] | [[Category:OSSL functions without threat level]] | ||
[[Category:OSSL functions without function syntax]] | [[Category:OSSL functions without function syntax]] |
Revision as of 08:29, 11 June 2011
OsGetGridNick | |
Threat Level | <Threat Level goes here> |
Function Syntax | |
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()); } } |