Files
dsrc/sku.0/sys.server/compiled/game/script/creature_spawner/sarlacc_spawner.java
T

33 lines
1.1 KiB
Java

package script.creature_spawner;
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 sarlacc_spawner extends script.base_script
{
public sarlacc_spawner()
{
}
public int OnInitialize(obj_id self) throws InterruptedException
{
location sarlaccPit = new location(-6173, 14, -3361, "tatooine", null);
obj_id sarlacc = createObject("object/mobile/sarlacc.iff", sarlaccPit);
setObjVar(sarlacc, "creater", self);
attachScript(sarlacc, "creature_spawner.death_msg");
return SCRIPT_CONTINUE;
}
public int creatureDied(obj_id self, dictionary params) throws InterruptedException
{
location sarlaccPit = new location(-6173, 14, -3361, "tatooine", null);
obj_id sarlacc = createObject("object/mobile/sarlacc.iff", sarlaccPit);
setObjVar(sarlacc, "creater", self);
attachScript(sarlacc, "creature_spawner.death_msg");
return SCRIPT_CONTINUE;
}
}