Removed old and unused sarlacc spawner scripts and objects.

This commit is contained in:
Cekis
2016-04-03 18:20:01 +01:00
parent 3bc9b07236
commit 0bfc1e2d91
4 changed files with 0 additions and 84 deletions
@@ -1,10 +0,0 @@
@base object/tangible/poi/base/poi_base.iff
@class tangible_object_template 0
@class object_template 0
visibleFlags = [VF_gm]
scripts = [ "creature_spawner.sarlacc_dathomir_spawner"]
@@ -1,10 +0,0 @@
@base object/tangible/poi/base/poi_base.iff
@class tangible_object_template 0
@class object_template 0
visibleFlags = [VF_gm]
scripts = [ "creature_spawner.sarlacc_spawner"]
@@ -1,32 +0,0 @@
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_dathomir_spawner extends script.base_script
{
public sarlacc_dathomir_spawner()
{
}
public int OnInitialize(obj_id self) throws InterruptedException
{
location sarlaccPit = new location(-2078.08f, 8f, 3143.75f, "dathomir", 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(-2078.08f, 8f, 3143.75f, "dathomir", null);
obj_id sarlacc = createObject("object/mobile/sarlacc.iff", sarlaccPit);
setObjVar(sarlacc, "creater", self);
attachScript(sarlacc, "creature_spawner.death_msg");
return SCRIPT_CONTINUE;
}
}
@@ -1,32 +0,0 @@
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;
}
}