Files
dsrc/sku.0/sys.server/compiled/game/script/npc/celebrity/wedge_antilles.java
T
2018-06-07 00:32:29 +01:00

19 lines
484 B
Java
Executable File

package script.npc.celebrity;
import script.library.ai_lib;
import script.obj_id;
public class wedge_antilles extends script.base_script
{
public wedge_antilles()
{
}
public int OnAttach(obj_id self) throws InterruptedException
{
ai_lib.setDefaultCalmBehavior(self, ai_lib.BEHAVIOR_SENTINEL);
debugSpeakMsg(self, "2 METERS?!?");
attachScript(self, "conversation.rtp_wedge_main");
return SCRIPT_CONTINUE;
}
}