OsGetGridNick
From OpenSimulator
(Difference between revisions)
| Line 10: | Line 10: | ||
} | } | ||
} | } | ||
| + | |||
| + | |||
| + | [[Category:OSSL]] | ||
Revision as of 08:42, 19 November 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());
}
}