mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-13 22:01:04 -04:00
20 lines
508 B
Java
Executable File
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;
|
|
}
|
|
}
|