Files
dsrc/sku.0/sys.server/compiled/game/script/working/cmayer/top.java
T

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;
}
}