Files
dsrc/sku.0/sys.server/compiled/game/script/working/toad/top.script
T
2013-09-10 23:17:15 -07:00

27 lines
614 B
Plaintext

include library.regions;
trigger OnHearSpeech (obj_id speaker, string text)
{
if (!hasObjVar (speaker, "gm"))
{
return SCRIPT_CONTINUE;
}
if (text == "test")
{
location here = getLocation(self);
obj_id bldg = getTopMostContainer (self);
debugSpeakMsg (self, "I'm contained by " + bldg);
location there = getLocation (bldg);
location target = new location();
region[] rgnFoos = getRegionsWithGeographicalAtPoint(there, regions.GEO_CITY);
if(rgnFoos==null)
{
debugSpeakMsg(self, "NULL FOOS");
return SCRIPT_CONTINUE;
}
region quest = rgnFoos[0];
}
return SCRIPT_CONTINUE;
}