mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-14 23:07:51 -04:00
17 lines
374 B
Java
Executable File
17 lines
374 B
Java
Executable File
package script.npc.celebrity;
|
|
|
|
import script.obj_id;
|
|
|
|
public class dera extends script.base_script
|
|
{
|
|
public dera()
|
|
{
|
|
}
|
|
public static final String CONVO = "celebrity/dera_darklighter";
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
setName(self, "Dera Darklighter");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|