OsGetGridNick
From OpenSimulator
(Difference between revisions)
(New page: <blockquote> //XEngine;lsl<br>//<br>// Example of osGetGridNick()<br>// returns the value of gridnick = "hippogrid" in OpenSim.ini under [GridInfo] section default<br>{<br>state_entry()<b...) |
|||
| Line 1: | Line 1: | ||
| − | + | // | |
| − | // | + | // Example of osGetGridNick() |
| − | + | // returns the value of gridnick = "hippogrid" in OpenSim.ini under [GridInfo] section | |
| − | default | + | // |
| − | + | default | |
| + | { | ||
| + | state_entry() | ||
| + | { | ||
| + | llSay(0, "Grid Nick Name = "+osGetGridNick()); | ||
| + | } | ||
| + | } | ||
Revision as of 22:49, 10 January 2010
//
// Example of osGetGridNick()
// returns the value of gridnick = "hippogrid" in OpenSim.ini under [GridInfo] section
//
default
{
state_entry()
{
llSay(0, "Grid Nick Name = "+osGetGridNick());
}
}