OsGetGridName
From OpenSimulator
(Difference between revisions)
| Line 1: | Line 1: | ||
| + | <source lang="lsl"> | ||
// | // | ||
// Example of osGetGridName() | // Example of osGetGridName() | ||
| Line 10: | Line 11: | ||
} | } | ||
} | } | ||
| − | + | </source> | |
[[Category:OSSL]] | [[Category:OSSL]] | ||
Revision as of 16:27, 5 June 2011
// // Example of osGetGridName() // returns the value of gridname = "Hippogrid" in OpenSim.ini under [GridInfo] section // default { state_entry() { llSay(0, "Grid Name = "+osGetGridName()); } }