12 lines
166 B
Plaintext
12 lines
166 B
Plaintext
int StartingConditional()
|
|
{
|
|
object oPC;
|
|
|
|
oPC=GetPCSpeaker();
|
|
if (GetLocalInt(oPC,"Evil") == 1 && GetLocalInt(oPC,"EvilWait") == 0)
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
|
|
}
|