mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -04:00
27 lines
595 B
Java
27 lines
595 B
Java
package script.npc.static_npc;
|
|
|
|
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;
|
|
|
|
public class wuher extends script.base_script
|
|
{
|
|
public wuher()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
ai_lib.setDefaultCalmBehavior(self, ai_lib.BEHAVIOR_SENTINEL);
|
|
setName(self, "Wuher");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|