mirror of
https://bitbucket.org/seefoe/dsrc.git
synced 2026-07-31 01:15:55 -04:00
31 lines
508 B
Plaintext
31 lines
508 B
Plaintext
/*
|
|
test.script
|
|
*/
|
|
|
|
trigger OnSpeaking(string text)
|
|
{
|
|
if ( text == "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;
|
|
}
|
|
|