diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-20 21:10:05 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-20 21:10:05 +0000 |
commit | b3e8bfcadc3d457ab588449f2e7b9ca6aa7ccd0e (patch) | |
tree | c4bae832779683452514cacea510067a2bed454b /npc | |
parent | 9e0d52a541b2733575467ae0a7650e5d7a6cfc17 (diff) | |
download | hercules-b3e8bfcadc3d457ab588449f2e7b9ca6aa7ccd0e.tar.gz hercules-b3e8bfcadc3d457ab588449f2e7b9ca6aa7ccd0e.tar.bz2 hercules-b3e8bfcadc3d457ab588449f2e7b9ca6aa7ccd0e.tar.xz hercules-b3e8bfcadc3d457ab588449f2e7b9ca6aa7ccd0e.zip |
Follow up to r13091, fixed weight check in stone dismantler.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13102 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/quests/quests_umbala.txt | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index e97a4eb70..c5d4434ba 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -1,5 +1,7 @@ Date Added ====== +2008/08/20 + * Rev. 13102 Follow up to r13091, fixed weight check in stone dismantler. [L0ne_W0lf] 2008/08/19 * Rev. 13091 Rather large update to the Keil Hyre quest. [L0ne_W0lf] - Update does not add any of the changes made by iRO. diff --git a/npc/quests/quests_umbala.txt b/npc/quests/quests_umbala.txt index 4b91a751a..2309bfc2a 100644 --- a/npc/quests/quests_umbala.txt +++ b/npc/quests/quests_umbala.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= sabernet09 & eAthena Team //===== Current Version: ===================================== -//= 2.2 +//= 2.2a //===== Compatible With: ===================================== //= eAthena 7.15 + //===== Description: ========================================= @@ -36,6 +36,7 @@ //= 2.0 Updated hack check and added a weight check to dismantling. [SinSloth] //= 2.1 Rescripted to Aegis 10.3 standards. Added strange quest. [L0ne_W0lf] //= 2.2 Readded the ability to dismantle multiple stones at once. [L0ne_W0lf] +//= 2.2a Fixed weight check from previous update. [L0ne_w0lf] //============================================================ //============================================================================== @@ -701,7 +702,7 @@ um_in,44,71,2 script Utan Shaman 782,{ input .@input,0,11; if ((.@input > 0) && (.@input < 11)) { if (countitem(.@divide) >= .@input) { - if (checkweight(.@divide,.@input * 300) == 0) { + if (checkweight(908,(.@input * 30)) == 0) { mes "[Puchuchartan]"; mes "You're carrying too"; mes "many items right now."; @@ -800,7 +801,7 @@ um_in,44,71,2 script Utan Shaman 782,{ mes "you to bring "+.@input+" pure earth stone."; break; } - mes "^3377FF1 "+.@input+" "+getitemname(.@divide)+"^000000."; + mes "^3377FF"+.@input+" "+getitemname(.@divide)+"^000000."; next; mes "[Puchuchartan]"; mes "That's all I need..."; |