12 lines
150 B
Plaintext
12 lines
150 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = FALSE;
|
|
|
|
if (GetLocalInt(OBJECT_SELF,"QuestComplete") == 0)
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|