diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-06 22:14:06 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-06 22:14:06 -0300 |
commit | 956c1b19be9a3f86568bc9320ee92fc2c264ee24 (patch) | |
tree | 983f14e4daecc2a4da578623846a418031e85148 | |
parent | 3c549fdce64dfd158330021db7a140483b5cfb26 (diff) | |
download | serverdata-956c1b19be9a3f86568bc9320ee92fc2c264ee24.tar.gz serverdata-956c1b19be9a3f86568bc9320ee92fc2c264ee24.tar.bz2 serverdata-956c1b19be9a3f86568bc9320ee92fc2c264ee24.tar.xz serverdata-956c1b19be9a3f86568bc9320ee92fc2c264ee24.zip |
Can't really find the bug on Dan?
-rw-r--r-- | npc/002-1/dan.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/002-1/dan.txt b/npc/002-1/dan.txt index 6af4cb349..613fd555b 100644 --- a/npc/002-1/dan.txt +++ b/npc/002-1/dan.txt @@ -14,7 +14,7 @@ .@q=getq(ShipQuests_Dan); if (.@q == 1) goto L_Report; if (.@q == 2) goto L_Reward; - if (.@q == 3) goto L_Finished; + if (.@q >= 3) goto L_Finished; mesn; mesq l("You see these pious around us?"); @@ -95,7 +95,7 @@ OnInit: end; .@t=getq2(ShipQuests_Dan); if (.@t+1 >= 12) setq ShipQuests_Dan, 2, 0; - if (.@t+1 < 12) setq ShipQuests_Dan, 1, .@t+1; + if (.@t+1 < 12) setq2 ShipQuests_Dan, .@t+1; } OnFakeKill: |