mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-08-01 02:16:04 -04:00
31 lines
728 B
Java
31 lines
728 B
Java
package script.space.characters;
|
|
|
|
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;
|
|
|
|
import script.library.chat;
|
|
|
|
public class technician extends script.base_script
|
|
{
|
|
public technician()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
setInvulnerable(self, true);
|
|
setName(self, "A Starship Technician");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
setInvulnerable(self, true);
|
|
setName(self, "A Starship Technician");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|