From 0bfc1e2d9178ff7befb11987ab2f1e247af743b9 Mon Sep 17 00:00:00 2001 From: Cekis Date: Sun, 3 Apr 2016 18:20:01 +0100 Subject: [PATCH] Removed old and unused sarlacc spawner scripts and objects. --- .../sarlacc_dathomir_spawner.tpf | 10 ------ .../creature_spawner/sarlacc_spawner.tpf | 10 ------ .../sarlacc_dathomir_spawner.java | 32 ------------------- .../creature_spawner/sarlacc_spawner.java | 32 ------------------- 4 files changed, 84 deletions(-) delete mode 100644 sku.0/sys.server/compiled/game/object/tangible/creature_spawner/sarlacc_dathomir_spawner.tpf delete mode 100644 sku.0/sys.server/compiled/game/object/tangible/creature_spawner/sarlacc_spawner.tpf delete mode 100644 sku.0/sys.server/compiled/game/script/creature_spawner/sarlacc_dathomir_spawner.java delete mode 100644 sku.0/sys.server/compiled/game/script/creature_spawner/sarlacc_spawner.java diff --git a/sku.0/sys.server/compiled/game/object/tangible/creature_spawner/sarlacc_dathomir_spawner.tpf b/sku.0/sys.server/compiled/game/object/tangible/creature_spawner/sarlacc_dathomir_spawner.tpf deleted file mode 100644 index d988199f5..000000000 --- a/sku.0/sys.server/compiled/game/object/tangible/creature_spawner/sarlacc_dathomir_spawner.tpf +++ /dev/null @@ -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"] \ No newline at end of file diff --git a/sku.0/sys.server/compiled/game/object/tangible/creature_spawner/sarlacc_spawner.tpf b/sku.0/sys.server/compiled/game/object/tangible/creature_spawner/sarlacc_spawner.tpf deleted file mode 100644 index f12a0d7fd..000000000 --- a/sku.0/sys.server/compiled/game/object/tangible/creature_spawner/sarlacc_spawner.tpf +++ /dev/null @@ -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"] \ No newline at end of file diff --git a/sku.0/sys.server/compiled/game/script/creature_spawner/sarlacc_dathomir_spawner.java b/sku.0/sys.server/compiled/game/script/creature_spawner/sarlacc_dathomir_spawner.java deleted file mode 100644 index b4712d40f..000000000 --- a/sku.0/sys.server/compiled/game/script/creature_spawner/sarlacc_dathomir_spawner.java +++ /dev/null @@ -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; - } -} diff --git a/sku.0/sys.server/compiled/game/script/creature_spawner/sarlacc_spawner.java b/sku.0/sys.server/compiled/game/script/creature_spawner/sarlacc_spawner.java deleted file mode 100644 index 30c3f9dfe..000000000 --- a/sku.0/sys.server/compiled/game/script/creature_spawner/sarlacc_spawner.java +++ /dev/null @@ -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; - } -}