mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-03 03:15:55 -04:00
28 lines
724 B
Java
28 lines
724 B
Java
package script.poi.city;
|
|
|
|
import script.*;
|
|
import script.base_class.*;
|
|
import script.combat_engine.*;
|
|
import java.util.Arrays;
|
|
import java.util.Hashtable;
|
|
import java.util.Vector;
|
|
import script.base_script;
|
|
|
|
public class taike_tusken extends script.base_script
|
|
{
|
|
public taike_tusken()
|
|
{
|
|
}
|
|
public int goToTheSpot(obj_id self, dictionary params) throws InterruptedException
|
|
{
|
|
location there = new location(3839f, 25f, 2351f, "tatooine", null);
|
|
pathTo(self, there);
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int OnMovePathNotFound(obj_id self) throws InterruptedException
|
|
{
|
|
debugServerConsoleMsg(self, "I DON'T KNOW WHERE TO GO!");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|