Files
dsrc/sku.0/sys.server/compiled/game/script/city/city_wander.java
T
2018-03-26 01:21:00 +01:00

29 lines
767 B
Java
Executable File

package script.city;
import script.dictionary;
import script.obj_id;
public class city_wander extends script.city.base.base_wander
{
public String[] patrolPoints =
{
"city1",
"city2",
"city3",
"city4",
"city5",
"city6"
};
public city_wander()
{
super.patrolPoints = patrolPoints;
}
public int killIt(obj_id self, dictionary params) throws InterruptedException
{
LOG("NPC_Cleanup", "NPC: " + self + " at " + getLocation(self) + " has cleaned itself up because it couldn't find anyplace to go, according to the City_Wander script.");
return super.killIt(self, params);
}
}