diff options
-rw-r--r-- | npc/000-1/ale.txt | 2 | ||||
-rw-r--r-- | npc/000-1/astapolos.txt | 2 | ||||
-rw-r--r-- | npc/000-1/gulukan.txt | 2 | ||||
-rw-r--r-- | npc/000-1/jalad.txt | 2 | ||||
-rw-r--r-- | npc/000-1/muller.txt | 2 | ||||
-rw-r--r-- | npc/000-1/tibbo.txt | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/npc/000-1/ale.txt b/npc/000-1/ale.txt index 74bcb390c..eb89676ba 100644 --- a/npc/000-1/ale.txt +++ b/npc/000-1/ale.txt @@ -8,7 +8,7 @@ 000-1.gat,55,23,0,1 script Ale 105;2,{ set @g, getq(ShipQuests_Gugli); - if (@g == 1) goto l_NoTask; + if (@g == 0) goto l_NoTask; set @q, getq(ShipQuests_Ale); if (@q == 1) goto l_CallFunc; diff --git a/npc/000-1/astapolos.txt b/npc/000-1/astapolos.txt index f208d0d1a..dd0d65215 100644 --- a/npc/000-1/astapolos.txt +++ b/npc/000-1/astapolos.txt @@ -8,7 +8,7 @@ 000-1.gat,22,50,0,1 script Astapolos 107;2,{
set @g, getq(ShipQuests_Gugli);
- if (@g == 1) goto l_NoTask;
+ if (@g == 0) goto l_NoTask;
set @q, getq(ShipQuests_Astapolos);
if (@q == 1) goto l_CallFunc;
diff --git a/npc/000-1/gulukan.txt b/npc/000-1/gulukan.txt index ec5066d39..c33b06993 100644 --- a/npc/000-1/gulukan.txt +++ b/npc/000-1/gulukan.txt @@ -8,7 +8,7 @@ 000-1.gat,54,90,0,1 script Gulukan 111;2,{ set @g, getq(ShipQuests_Gugli); - if (@g == 1) goto l_NoTask; + if (@g == 0) goto l_NoTask; set @q, getq(ShipQuests_Gulukan); if (@q == 1) l_Func; diff --git a/npc/000-1/jalad.txt b/npc/000-1/jalad.txt index 1b91fb781..44cdd78b4 100644 --- a/npc/000-1/jalad.txt +++ b/npc/000-1/jalad.txt @@ -8,7 +8,7 @@ 000-1.gat,46,35,0,1 script Jalad 110;2,{ set @g, getq(ShipQuests_Gugli); - if (@g == 1) goto l_NoTask; + if (@g == 0) goto l_NoTask; set @q, getq(ShipQuests_Jalad); if (@q == 1) goto l_CallFunc; diff --git a/npc/000-1/muller.txt b/npc/000-1/muller.txt index 242223ab7..718385754 100644 --- a/npc/000-1/muller.txt +++ b/npc/000-1/muller.txt @@ -8,7 +8,7 @@ 000-1.gat,35,69,0,1 script Q'Muller 104;2,{ set @g, getq(ShipQuests_Gugli); - if (@g == 1) goto l_NoTask; + if (@g == 0) goto l_NoTask; set @q, getq(ShipQuests_QMuller); if (@q == 1) goto l_CallFunc; diff --git a/npc/000-1/tibbo.txt b/npc/000-1/tibbo.txt index 74b03bfd3..a5b07a47a 100644 --- a/npc/000-1/tibbo.txt +++ b/npc/000-1/tibbo.txt @@ -8,7 +8,7 @@ 000-1.gat,34,111,0,1 script Tibbo 110;2,{ set @g, getq(ShipQuests_Gugli); - if (@g == 1) goto l_NoTask; + if (@g == 0) goto l_NoTask; set @q, getq(ShipQuests_Tibbo); if (@q == 1) goto l_CallFunc; |