diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-05-20 12:53:54 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-05-20 12:53:54 +0000 |
commit | af90f0c214d86aca0117df966f87b95e6999bd45 (patch) | |
tree | 3b4896980325d38dd9e6894ef550e22ab7a667bc /npc/merchants/milk_trader.txt | |
parent | 08dfe78adc3114126e58ff6ceafc9040670443b0 (diff) | |
download | hercules-af90f0c214d86aca0117df966f87b95e6999bd45.tar.gz hercules-af90f0c214d86aca0117df966f87b95e6999bd45.tar.bz2 hercules-af90f0c214d86aca0117df966f87b95e6999bd45.tar.xz hercules-af90f0c214d86aca0117df966f87b95e6999bd45.zip |
* Fixed variable issue with Milk Trader NPC. (bugreport:1523)
* Fixed typos in the acolyte nad mage skill quests. (bugreport:1531)
* Fixed issue with a removing a Keil Hyre cutin. (bugreport:1593)
* Corrected a few oversights in the WoESE scripts.
* Added dummy "OnMyMobDead" label to a Niflheim NPC.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12718 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/merchants/milk_trader.txt')
-rw-r--r-- | npc/merchants/milk_trader.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/merchants/milk_trader.txt b/npc/merchants/milk_trader.txt index f960ee284..cb5f26c74 100644 --- a/npc/merchants/milk_trader.txt +++ b/npc/merchants/milk_trader.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= kobra_k88; L0ne_W0lf //===== Current Version: ===================================== -//= 1.4 +//= 1.5 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -16,6 +16,7 @@ //= 1.2a Switched to Lupus's "loopless" technique.[kobra_k88] //= 1.3 Rescripted to Aegis 10.3 standards. [L0ne_W0lf] //= 1.4 Implemented checkweight. [L0ne_W0lf] +//= 1.5 Fixed missed variable. (bugreport:1523) [L0ne_W0lf] //============================================================ prontera,73,140,0 script Milk Vendor 86,{ @@ -57,7 +58,7 @@ prontera,73,140,0 script Milk Vendor 86,{ mes "zeny to exchange all"; mes "these Empty Bottles for"; mes "Milk. You need to have"; - mes "at least " + gap + " zeny."; + mes "at least " + .@total_cost + " zeny."; close; } if ((maxweight-weight) < .@total_weight) { |