OsGetGridName
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
|||
Line 1: | Line 1: | ||
− | {{osslfunc| | + | {{osslfunc |
− | threat_level = Moderate | + | |threat_level=Moderate |
− | | | + | |function_syntax=osGetGridName() |
− | function_syntax = | + | |
− | osGetGridName() | + | |
− | + | ||
| | | | ||
ossl_example =<source lang="lsl"> | ossl_example =<source lang="lsl"> | ||
Line 19: | Line 16: | ||
} | } | ||
</source> | </source> | ||
− | | | + | |description= |
− | + | ||
| | | | ||
}} | }} |
Revision as of 20:33, 1 July 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()); } } |