mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
18 lines
395 B
Java
Executable File
18 lines
395 B
Java
Executable File
package script.npc.static_npc;
|
|
|
|
import script.library.ai_lib;
|
|
import script.obj_id;
|
|
|
|
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;
|
|
}
|
|
}
|