14 lines
308 B
Plaintext
14 lines
308 B
Plaintext
//pelben_c_done
|
|
int StartingConditional()
|
|
{
|
|
object oMe=OBJECT_SELF;
|
|
object oTarget=GetLocalObject(oMe,"oMsgTarget");
|
|
if (oTarget==OBJECT_INVALID)
|
|
{
|
|
DelayCommand(0.5,DestroyObject(oMe));
|
|
return TRUE;
|
|
}
|
|
if (GetLocalInt(oMe,"bSpoken")==TRUE) return TRUE;
|
|
return FALSE;
|
|
}
|