diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-09 18:38:08 -0200 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-09 18:38:08 -0200 |
commit | 11ba5818c68cf480e5ff15898f76c252621f45bd (patch) | |
tree | 7b6440a4212ae682b8c4cf4686bb806d66333685 /npc/002-4 | |
parent | f90619604e7915db8332463089e7d511383a5cae (diff) | |
download | serverdata-11ba5818c68cf480e5ff15898f76c252621f45bd.tar.gz serverdata-11ba5818c68cf480e5ff15898f76c252621f45bd.tar.bz2 serverdata-11ba5818c68cf480e5ff15898f76c252621f45bd.tar.xz serverdata-11ba5818c68cf480e5ff15898f76c252621f45bd.zip |
Nard will now speak about GP amount, but the value charged is 100000000% higher!
Diffstat (limited to 'npc/002-4')
-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; |