mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-14 23:07:51 -04:00
23 lines
562 B
Java
Executable File
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;
|
|
}
|
|
}
|