mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
19 lines
355 B
Java
Executable File
19 lines
355 B
Java
Executable File
package script.working.cmayer;
|
|
|
|
import script.obj_id;
|
|
|
|
public class top extends script.base_script
|
|
{
|
|
public top()
|
|
{
|
|
}
|
|
public int OnSpeaking(obj_id self, String text) throws InterruptedException
|
|
{
|
|
if (text.equals("test"))
|
|
{
|
|
debugSpeakMsg(self, "TopScript");
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|