mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
16 lines
314 B
Java
Executable File
16 lines
314 B
Java
Executable File
package script.working.cmayer;
|
|
|
|
import script.obj_id;
|
|
|
|
public class inittest extends script.base_script
|
|
{
|
|
public inittest()
|
|
{
|
|
}
|
|
public int OnInitialize(obj_id self) throws InterruptedException
|
|
{
|
|
debugServerConsoleMsg(self, ("I am initialized"));
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|