OsGetGridName
From OpenSimulator
(Difference between revisions)
m |
|||
Line 1: | Line 1: | ||
− | {| | + | {{osslfunc| |
− | + | threat_level = Moderate | |
− | | | + | | |
− | + | function_syntax = <source lang="lsl"> | |
− | + | ||
− | + | ||
− | + | ||
osGetGridName() | osGetGridName() | ||
</source> | </source> | ||
− | | | + | | |
− | + | ossl_example =<source lang="lsl"> | |
// | // | ||
// Example of osGetGridName() | // Example of osGetGridName() | ||
Line 22: | Line 19: | ||
} | } | ||
</source> | </source> | ||
− | | | + | | |
− | + | additional_info = | |
− | + | | | |
+ | }} |
Revision as of 15:01, 12 June 2011
osGetGridName() | |
No descriptions provided | |
Threat Level | Moderate |
Permissions | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
// // Example of osGetGridName() // returns the value of gridname = "Hippogrid" in OpenSim.ini under [GridInfo] section // default { state_entry() { llSay(0, "Grid Name = "+osGetGridName()); } } |