mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-14 23:07:51 -04:00
21 lines
577 B
Java
Executable File
21 lines
577 B
Java
Executable File
package script.npc.celebrity;
|
|
|
|
import script.library.ai_lib;
|
|
import script.obj_id;
|
|
|
|
public class huff_guard extends script.base_script
|
|
{
|
|
public huff_guard()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
setInvulnerable(self, true);
|
|
setName(self, "Huff Darklighter's Guard");
|
|
ai_lib.setDefaultCalmBehavior(self, ai_lib.BEHAVIOR_SENTINEL);
|
|
attachScript(self, "npc.static_quest.quest_convo");
|
|
setObjVar(self, "quest_table", "huff_guard");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|