mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-09-11 22:45:06 -04:00
Removed old and unused sarlacc spawner scripts and objects.
This commit is contained in:
-10
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user