diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-03 10:17:07 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-03 10:17:07 +0000 |
commit | bfee9538c80b8a601eccd8afe5875b442fd167a0 (patch) | |
tree | bf24e0872660340b20e750f55518caf982c74162 /npc | |
parent | 2b5634faa20cdac69f94ba5abd4ea3fca8c44c2d (diff) | |
download | hercules-bfee9538c80b8a601eccd8afe5875b442fd167a0.tar.gz hercules-bfee9538c80b8a601eccd8afe5875b442fd167a0.tar.bz2 hercules-bfee9538c80b8a601eccd8afe5875b442fd167a0.tar.xz hercules-bfee9538c80b8a601eccd8afe5875b442fd167a0.zip |
Fixed bug in refiner merchants. (bugreport:2168)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13187 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/merchants/refine.txt | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 900b50dfa..f75746bd5 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -1,5 +1,7 @@ Date Added ====== +2008/09/03 + * Rev. 13187 Fixed bug in refiner merchants. (bugreport:2168) [L0ne_W0lf] 2008/09/01 * Rev. 13181 Fixed item requirements for PH D. Hat again. [L0ne_W0lf] * Rev. 13180 Updating god item seal quests (5/5) [L0ne_W0lf] diff --git a/npc/merchants/refine.txt b/npc/merchants/refine.txt index fd5bd24d6..707c71a1c 100644 --- a/npc/merchants/refine.txt +++ b/npc/merchants/refine.txt @@ -45,6 +45,7 @@ //= 2.3 Corrected NPC names to fall within proper restrictions. [L0ne_W0lf] //= 2.4 Updated Refiner function. cleaner, and less dated. [L0ne_w0lf] //= 2.5 Rather large update to the refiner and merchants. :D [L0ne_W0lf] +//= 2.6 Fixed a few bugs with creating pure stones. [L0ne_W0lf] //============================================================ @@ -285,7 +286,7 @@ geffen_in,110,172,0 script Christopher#1::Chrisbs 63,{ } else { delitem 756,5; //Oridecon_Stone - getitem 615,1; // Oridecon + getitem 984,1; // Oridecon mes "[Christopher Guillenrow]"; mes "Here's an Oridecon fer ye. Ye will be always welcome here, I'll be waitin' for ye."; close; @@ -298,7 +299,7 @@ geffen_in,110,172,0 script Christopher#1::Chrisbs 63,{ } else { delitem 757,5; //Elunium_Stone - getitem 757,1; // Elunium + getitem 985,1; // Elunium mes "[Christopher Guillenrow]"; mes "Arrr, here's yer Elunium. Yer business is always welcome here, so feel free to come again."; close; @@ -826,7 +827,7 @@ function script orimain { case 1: if (countitem(756) > 4) { delitem 756,5; //Oridecon_Stone - getitem 615,1; // Oridecon + getitem 984,1; // Oridecon mes "[" + getarg(0) + "]"; mes "Here's your Oridecon."; mes "You're welcome to come"; @@ -842,7 +843,7 @@ function script orimain { case 2: if (countitem(757) > 4) { delitem 757,5; //Elunium_Stone - getitem 757,1; // Elunium + getitem 985,1; // Elunium mes "[" + getarg(0) + "]"; mes "Here's your Elunium."; mes "You're welcome to come"; |