Files
dsrc/sku.0/sys.server/compiled/game/script/space/characters/technician.java
T

23 lines
562 B
Java
Executable File

package script.space.characters;
import script.obj_id;
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;
}
}