Quest logic bugfixes
Quest logic bugfixes. Full compile.
This commit is contained in:
@@ -21,7 +21,7 @@ int StartingConditional()
|
||||
|
||||
//:: Inspect quest state
|
||||
nInt = RetrieveQuestState("dirtydeed", oPC);
|
||||
if (!nInt == 2)
|
||||
if (!(nInt == 2))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
@@ -20,7 +20,7 @@ int StartingConditional()
|
||||
|
||||
//:: Inspect quest state
|
||||
nInt = RetrieveQuestState("dirtydeed", oPC);
|
||||
if (!nInt == 3)
|
||||
if (!(nInt == 3))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
@@ -20,7 +20,7 @@ int StartingConditional()
|
||||
|
||||
//:: Inspect quest state
|
||||
nInt = RetrieveQuestState("dirtydeed", oPC);
|
||||
if (!nInt == 5)
|
||||
if (!(nInt == 5))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
@@ -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;
|
||||
|
@@ -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;
|
||||
|
@@ -21,7 +21,7 @@ int StartingConditional()
|
||||
|
||||
//:: Inspect quest state
|
||||
nInt = RetrieveQuestState("kingsley", oPC);
|
||||
if (!nInt == 1)
|
||||
if (!(nInt == 1))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
@@ -27,7 +27,7 @@ int StartingConditional()
|
||||
|
||||
//:: Inspect quest state
|
||||
nInt = RetrieveQuestState("kingsley", oPC);
|
||||
if (!nInt == 1)
|
||||
if (!(nInt == 1))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
@@ -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;
|
||||
|
@@ -21,7 +21,7 @@ int StartingConditional()
|
||||
|
||||
//:: Inspect quest state
|
||||
nInt = RetrieveQuestState("tribitz", oPC);
|
||||
if (!nInt == 0)
|
||||
if (!(nInt == 0))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
@@ -21,7 +21,7 @@ int StartingConditional()
|
||||
|
||||
//:: Inspect quest state
|
||||
nInt = RetrieveQuestState("tribitz", oPC);
|
||||
if (!nInt == 3)
|
||||
if (!(nInt == 3))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
@@ -21,7 +21,7 @@ int StartingConditional()
|
||||
|
||||
//:: Inspect quest state
|
||||
nInt = RetrieveQuestState("tribitz", oPC);
|
||||
if (!nInt == 5)
|
||||
if (!(nInt == 5))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
@@ -21,7 +21,7 @@ int StartingConditional()
|
||||
|
||||
//:: Inspect quest state
|
||||
nInt = RetrieveQuestState("yuanti", oPC);
|
||||
if (!nInt == 2)
|
||||
if (!(nInt == 2))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
Reference in New Issue
Block a user