mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-07-31 00:15:54 -04:00
23 lines
600 B
Java
Executable File
23 lines
600 B
Java
Executable File
package script.working.jfreeman;
|
|
|
|
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 msgtestbase extends script.base_script
|
|
{
|
|
public msgtestbase()
|
|
{
|
|
}
|
|
public int handleTest(obj_id self, dictionary params) throws InterruptedException
|
|
{
|
|
debugSpeakMsg(self, "msg test base received message");
|
|
debugSpeakMsg(self, "this should not have happened, if this script was attached first.");
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|