diff options
-rw-r--r-- | npc/002-4/nard.txt | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/npc/002-4/nard.txt b/npc/002-4/nard.txt index 85dd9a941..97d3cd092 100644 --- a/npc/002-4/nard.txt +++ b/npc/002-4/nard.txt @@ -39,7 +39,7 @@ L_Checker: if (.@nard > 4) goto L_Already; if (.@gugli == 2) goto L_Done; if (.@nard == 1) goto L_NotYet; - if (.@narrator == 1) goto L_Reward; // TODO + if (.@narrator == 1) goto L_NotYet; // TODO mesn; mesq l("Hello."); @@ -168,6 +168,12 @@ L_DrasilIsland: L_NotYet: mesn; mesq l("You still haven't completed your tasks."); + next; + .@price=2000000000-Zeny; // TODO: The price is 2 kGP, not 2 Billions + if (.@price <= 0) + mesq l("I don't accept dirty money. You must have a hard-worked gold!"); + else + mesq l("You still need @@ GP for the trip to Tulishmar.", .@price); close; L_Done: @@ -274,7 +280,7 @@ L_GoBackArtis: L_Reward: mesn; - mesq l("It is still not enough. Go back to work!"); + mesq l("You may already claim your reward."); close; |