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

25 lines
664 B
Java
Executable File

package script.space.characters;
import script.obj_id;
public class holfheim extends script.base_script
{
public holfheim()
{
}
public int OnAttach(obj_id self) throws InterruptedException
{
setAnimationMood(self, "npc_imperial");
setInvulnerable(self, true);
setName(self, "Under Inquisitor Holfheim");
return SCRIPT_CONTINUE;
}
public int OnInitialize(obj_id self) throws InterruptedException
{
setAnimationMood(self, "npc_imperial");
setInvulnerable(self, true);
setName(self, "Under Inquisitor Holfheim");
return SCRIPT_CONTINUE;
}
}