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

20 lines
508 B
Java
Executable File

package script.npc.celebrity;
import script.obj_id;
public class reelo_baruk extends script.base_script
{
public reelo_baruk()
{
}
public int OnAttach(obj_id self) throws InterruptedException
{
attachScript(self, "conversation.reelo_baruk");
if (hasScript(self, "theme_park.tatooine.recruitment.hutt_recruit"))
{
detachScript(self, "theme_park.tatooine.recruitment.hutt_recruit");
}
return SCRIPT_CONTINUE;
}
}