8 lines
189 B
Plaintext
8 lines
189 B
Plaintext
#include "quest_inc"
|
|
int StartingConditional()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
if (GetIsQuestFailed(oPC) == TRUE || GetIsQuestComplete(oPC) == TRUE) return FALSE;
|
|
return TRUE;
|
|
}
|