mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
37 lines
1.0 KiB
Java
Executable File
37 lines
1.0 KiB
Java
Executable File
package script.working.toad;
|
|
|
|
import script.library.regions;
|
|
import script.location;
|
|
import script.obj_id;
|
|
import script.region;
|
|
|
|
public class top extends script.base_script
|
|
{
|
|
public top()
|
|
{
|
|
}
|
|
public int OnHearSpeech(obj_id self, obj_id speaker, String text) throws InterruptedException
|
|
{
|
|
if (!hasObjVar(speaker, "gm"))
|
|
{
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
if (text.equals("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;
|
|
}
|
|
}
|