15 lines
212 B
Plaintext
15 lines
212 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oPriest;
|
|
|
|
iResult = FALSE;
|
|
|
|
oPriest = GetObjectByTag(GetLocalString(OBJECT_SELF,"Quest2"));
|
|
|
|
if (!GetIsObjectValid(oPriest))
|
|
iResult = TRUE;
|
|
|
|
return iResult;
|
|
}
|