17 lines
282 B
Plaintext
17 lines
282 B
Plaintext
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
object oMob;
|
|
|
|
iResult = FALSE;
|
|
|
|
if (GetLocalInt(GetPCSpeaker(),"NHQuest") == 3)
|
|
{
|
|
oMob = GetObjectByTag(GetLocalString(OBJECT_SELF,"QuestCreatures"));
|
|
if (!GetIsObjectValid(oMob))
|
|
iResult = TRUE;
|
|
}
|
|
|
|
return iResult;
|
|
}
|