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