mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
25 lines
514 B
Java
25 lines
514 B
Java
package script.working.cmayer;
|
|
|
|
import script.*;
|
|
import script.base_class.*;
|
|
import script.combat_engine.*;
|
|
import java.util.Arrays;
|
|
import java.util.Hashtable;
|
|
import java.util.Vector;
|
|
import script.base_script;
|
|
|
|
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;
|
|
}
|
|
}
|