14 lines
216 B
Plaintext
14 lines
216 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oDM = GetLastSpeaker ();
|
|
object oTarget;
|
|
|
|
oTarget = GetLocalObject (oDM, "xpwand_target");
|
|
|
|
if (oDM == oTarget)
|
|
{
|
|
return FALSE;
|
|
}
|
|
return TRUE;
|
|
}
|