mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-02 02:15:48 -04:00
35 lines
978 B
Java
35 lines
978 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.chat;
|
|
import script.library.factions;
|
|
import script.library.skill;
|
|
|
|
public class lady_valarian extends script.base_script
|
|
{
|
|
public lady_valarian()
|
|
{
|
|
}
|
|
public static final String CONVO = "celebrity/lady_valarian";
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
ai_lib.setDefaultCalmBehavior(self, ai_lib.BEHAVIOR_SENTINEL);
|
|
detachScript(self, "npc.celebrity.lady_valarian");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
ai_lib.setDefaultCalmBehavior(self, ai_lib.BEHAVIOR_SENTINEL);
|
|
detachScript(self, "npc.celebrity.lady_valarian");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|