mirror of
https://github.com/SWG-Source/dsrc.git
synced 2026-08-01 01:15:59 -04:00
43 lines
1.1 KiB
Java
43 lines
1.1 KiB
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 lostest extends script.base_script
|
|
{
|
|
public lostest()
|
|
{
|
|
}
|
|
public int OnSpeaking(obj_id self, String text) throws InterruptedException
|
|
{
|
|
if (text.equals("test"))
|
|
{
|
|
int times = 50;
|
|
if (hasObjVar(self, "lostest"))
|
|
{
|
|
times = getIntObjVar(self, "lostest");
|
|
}
|
|
obj_id target = getLookAtTarget(self);
|
|
boolean test = canSee(self, target);
|
|
if (test)
|
|
{
|
|
sendSystemMessageTestingOnly(self, "Can See!");
|
|
}
|
|
else
|
|
{
|
|
sendSystemMessageTestingOnly(self, "NOOOO Can See!");
|
|
}
|
|
for (int i = 0; i < times; ++i)
|
|
{
|
|
test = canSee(self, target);
|
|
}
|
|
}
|
|
return SCRIPT_CONTINUE;
|
|
}
|
|
}
|