OsGetGridNick
From OpenSimulator
Revision as of 22:49, 10 January 2010 by Hallow Palmer (Talk | contribs)
//
// Example of osGetGridNick()
// returns the value of gridnick = "hippogrid" in OpenSim.ini under [GridInfo] section
//
default
{
state_entry()
{
llSay(0, "Grid Nick Name = "+osGetGridNick());
}
}