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

25 lines
644 B
Java
Executable File

package script.space.characters;
import script.obj_id;
public class alozen extends script.base_script
{
public alozen()
{
}
public int OnAttach(obj_id self) throws InterruptedException
{
setAnimationMood(self, "npc_imperial");
setInvulnerable(self, true);
setName(self, "Field Cdr. Alozen");
return SCRIPT_CONTINUE;
}
public int OnInitialize(obj_id self) throws InterruptedException
{
setAnimationMood(self, "npc_imperial");
setInvulnerable(self, true);
setName(self, "Field Cdr. Alozen");
return SCRIPT_CONTINUE;
}
}