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