mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-14 23:07:51 -04:00
26 lines
673 B
Java
26 lines
673 B
Java
package script.systems.spawning.dropship;
|
|
|
|
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 base extends script.base_script
|
|
{
|
|
public base()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
detachScript(self, "ai.ai");
|
|
detachScript(self, "ai.creature_combat");
|
|
detachScript(self, "skeleton.humanoid");
|
|
detachScript(self, "systems.combat.combat_actions");
|
|
detachScript(self, "systems.combat.credit_for_kills");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|