mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-14 23:07:51 -04:00
25 lines
640 B
Java
Executable File
25 lines
640 B
Java
Executable File
package script.space.characters;
|
|
|
|
import script.obj_id;
|
|
|
|
public class oberhaur extends script.base_script
|
|
{
|
|
public oberhaur()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
setAnimationMood(self, "npc_imperial");
|
|
setInvulnerable(self, true);
|
|
setName(self, "Cdr. Oberhaur");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
setAnimationMood(self, "npc_imperial");
|
|
setInvulnerable(self, true);
|
|
setName(self, "Cdr. Oberhaur");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|