diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-09-16 22:15:24 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-09-16 22:15:24 -0300 |
commit | ea4b11a0dbdd31c5ee830756584093549cee4d27 (patch) | |
tree | ef6bbd1c6b6a64d0ce51fec49db19f27bb67208a | |
parent | 38fde29903713a45ee91491794941f81e78e4c8c (diff) | |
download | serverdata-ea4b11a0dbdd31c5ee830756584093549cee4d27.tar.gz serverdata-ea4b11a0dbdd31c5ee830756584093549cee4d27.tar.bz2 serverdata-ea4b11a0dbdd31c5ee830756584093549cee4d27.tar.xz serverdata-ea4b11a0dbdd31c5ee830756584093549cee4d27.zip |
[skip ci] Fix bad logic
-rw-r--r-- | npc/002-1/arpan.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/002-1/arpan.txt b/npc/002-1/arpan.txt index e0ff3f255..21035a25e 100644 --- a/npc/002-1/arpan.txt +++ b/npc/002-1/arpan.txt @@ -162,7 +162,7 @@ L_Menu: lg("Where can I find Juliet?"), L_Julia, l("Who are you?"), L_Who, l("I need a tutorial, where can I find help?"), L_Trainer, - rif(getq(ShipQuests_ArpanMoney) < 2, lg("Do you know what happened to the gold I had when you guys saved me?")), L_WhereMoney, + rif(!getq(ShipQuests_ArpanMoney), lg("Do you know what happened to the gold I had when you guys saved me?")), L_WhereMoney, rif(!.@equipped, lg("What should I do after taking these clothes?")), L_WhatCloth, rif(!.@equipped, l("Thank you, I'll take them and put them on.")), -, l("Nothing, sorry."), -; @@ -228,7 +228,7 @@ L_WhereMoney: next; if (BaseLevel < 4) goto L_Apana; - setq ShipQuests_ArpanMoney, 2; + setq ShipQuests_ArpanMoney, 1; .@q = getq(ShipQuests_Arpan); Zeny = Zeny + 35; message strcharinfo(0), l("You receive @@ GP!", 35); |