Quest logic bugfixes

Quest logic bugfixes.  Full compile.
This commit is contained in:
Jaysyn904 2022-08-11 20:28:01 -04:00
parent 212d2432f2
commit 8994c41256
39 changed files with 12 additions and 12 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -21,7 +21,7 @@ int StartingConditional()
//:: Inspect quest state
nInt = RetrieveQuestState("dirtydeed", oPC);
if (!nInt == 2)
if (!(nInt == 2))
return FALSE;
return TRUE;

View File

@ -20,7 +20,7 @@ int StartingConditional()
//:: Inspect quest state
nInt = RetrieveQuestState("dirtydeed", oPC);
if (!nInt == 3)
if (!(nInt == 3))
return FALSE;
return TRUE;

View File

@ -20,7 +20,7 @@ int StartingConditional()
//:: Inspect quest state
nInt = RetrieveQuestState("dirtydeed", oPC);
if (!nInt == 5)
if (!(nInt == 5))
return FALSE;
return TRUE;

View File

@ -28,7 +28,7 @@ int StartingConditional()
nInt = RetrieveQuestState("door", oPC);
//nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYdoor");
if (!nInt == 1)
if (!(nInt == 1))
return FALSE;
return TRUE;

View File

@ -28,7 +28,7 @@ int StartingConditional()
nInt = RetrieveQuestState("door", oPC);
//nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYdoor");
if (!nInt == 1)
if (!(nInt == 1))
return FALSE;
return TRUE;

View File

@ -21,7 +21,7 @@ int StartingConditional()
//:: Inspect quest state
nInt = RetrieveQuestState("kingsley", oPC);
if (!nInt == 1)
if (!(nInt == 1))
return FALSE;
return TRUE;

View File

@ -27,7 +27,7 @@ int StartingConditional()
//:: Inspect quest state
nInt = RetrieveQuestState("kingsley", oPC);
if (!nInt == 1)
if (!(nInt == 1))
return FALSE;
return TRUE;

View File

@ -23,7 +23,7 @@ int StartingConditional()
nInt = RetrieveQuestState("kupra", oPC);
//nInt=GetLocalInt(oPC, "NW_JOURNAL_ENTRYkupra");
if (!nInt == 1)
if (!(nInt == 1))
return FALSE;
return TRUE;

View File

@ -21,7 +21,7 @@ int StartingConditional()
//:: Inspect quest state
nInt = RetrieveQuestState("tribitz", oPC);
if (!nInt == 0)
if (!(nInt == 0))
return FALSE;
return TRUE;

View File

@ -21,7 +21,7 @@ int StartingConditional()
//:: Inspect quest state
nInt = RetrieveQuestState("tribitz", oPC);
if (!nInt == 3)
if (!(nInt == 3))
return FALSE;
return TRUE;

View File

@ -21,7 +21,7 @@ int StartingConditional()
//:: Inspect quest state
nInt = RetrieveQuestState("tribitz", oPC);
if (!nInt == 5)
if (!(nInt == 5))
return FALSE;
return TRUE;

View File

@ -21,7 +21,7 @@ int StartingConditional()
//:: Inspect quest state
nInt = RetrieveQuestState("yuanti", oPC);
if (!nInt == 2)
if (!(nInt == 2))
return FALSE;
return TRUE;

Binary file not shown.