diff options
Diffstat (limited to 'npc/merchants/novice_exchange.txt')
-rw-r--r-- | npc/merchants/novice_exchange.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/merchants/novice_exchange.txt b/npc/merchants/novice_exchange.txt index ad87dc4ae..f3d1af076 100644 --- a/npc/merchants/novice_exchange.txt +++ b/npc/merchants/novice_exchange.txt @@ -3,9 +3,9 @@ //===== By: ================================================== //= ???, eAthena Team //===== Current Version: ===================================== -//= 1.2 +//= 1.3 //===== Compatible With: ===================================== -//= eAthena 1.0+ +//= eAthena SVN //===== Description: ========================================= //= [Aegis COnversion] //= Exchanges your Basic Monster drops for Red Potions. @@ -13,6 +13,7 @@ //= 1.2 Rescripted to Aegis 10.standards. [L0ne_W0lf[ //= Made it easier to add new items to exhange list //= meaning only the exchange is done in a function now. +//= 1.3 Fixed dialog mix-up in function. [L0ne_W0lf] //============================================================ prontera,123,102,5 script Merchant#pron 85,{ @@ -303,7 +304,7 @@ function script F_PotExchange { if (countitem(getarg(0)) < getarg(1)) { mes "[Merchant]"; mes "Hey, where are"; - mes "all those Shells"; + mes "all those "+getitemname(getarg(0))+""; mes "that you promised?"; mes "Give me "+getitemname(getarg(0))+"!"; close; @@ -311,7 +312,7 @@ function script F_PotExchange { else { mes "[Merchant]"; mes "Okay, let me check"; - mes "how many Shells you"; + mes "how many "+getitemname(getarg(0))+" you"; mes "have on you. Hmm..."; next; mes "[Merchant]"; |