mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-02 02:15:48 -04:00
33 lines
848 B
Java
33 lines
848 B
Java
package script.npc.celebrity;
|
|
|
|
import script.*;
|
|
import script.base_class.*;
|
|
import script.combat_engine.*;
|
|
import java.util.Arrays;
|
|
import java.util.Hashtable;
|
|
import java.util.Vector;
|
|
import script.base_script;
|
|
|
|
import script.library.ai_lib;
|
|
import script.library.hue;
|
|
import script.library.colors;
|
|
import script.library.chat;
|
|
import script.library.factions;
|
|
import script.library.skill;
|
|
|
|
public class loam_redge extends script.base_script
|
|
{
|
|
public loam_redge()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
setName(self, "Inquisitor Loam Redge");
|
|
pvpSetAlignedFaction(self, (-615855020));
|
|
pvpMakeDeclared(self);
|
|
ai_lib.setDefaultCalmBehavior(self, ai_lib.BEHAVIOR_SENTINEL);
|
|
attachScript(self, "conversation.itp_loam_main");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|