mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-14 23:07:51 -04:00
16 lines
318 B
Java
Executable File
16 lines
318 B
Java
Executable File
package script.npc.celebrity;
|
|
|
|
import script.obj_id;
|
|
|
|
public class ree_yees extends script.base_script
|
|
{
|
|
public ree_yees()
|
|
{
|
|
}
|
|
public int OnAttach(obj_id self) throws InterruptedException
|
|
{
|
|
attachScript(self, "conversation.ree_yees");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|