18 lines
258 B
Plaintext
18 lines
258 B
Plaintext
|
int StartingConditional()
|
||
|
{
|
||
|
object oPC;
|
||
|
int iQuest;
|
||
|
|
||
|
iQuest = GetLocalInt(GetPCSpeaker(),"Quest");
|
||
|
|
||
|
oPC=GetPCSpeaker();
|
||
|
if (GetLocalInt(oPC,"Evil") == 1 && GetLocalInt(oPC,"EvilWait") == 1)
|
||
|
return TRUE;
|
||
|
|
||
|
if (iQuest >0)
|
||
|
return TRUE;
|
||
|
|
||
|
return FALSE;
|
||
|
|
||
|
}
|