diff options
author | smokexyz <sagunkho@hotmail.com> | 2017-05-21 12:00:05 +0800 |
---|---|---|
committer | smokexyz <sagunkho@hotmail.com> | 2017-05-21 12:00:05 +0800 |
commit | e171deb58c7ebbc010d0a40b0e2e66651a0d7913 (patch) | |
tree | 08250f1ebcba2e0e03f2ad0a164f44a110d15de1 /npc/merchants | |
parent | be118c7fad6df29dc691452ef511ac12fea37a06 (diff) | |
download | hercules-e171deb58c7ebbc010d0a40b0e2e66651a0d7913.tar.gz hercules-e171deb58c7ebbc010d0a40b0e2e66651a0d7913.tar.bz2 hercules-e171deb58c7ebbc010d0a40b0e2e66651a0d7913.tar.xz hercules-e171deb58c7ebbc010d0a40b0e2e66651a0d7913.zip |
Refine rate correction from kRO.
Normal Ores: http://ro.gnjoy.com/news/probability/View.asp?category=4&seq=1941553&curpage=1
Enriched Ores: http://ro.gnjoy.com/news/probability/View.asp?category=4&seq=1941565&curpage=1
Event Normal Ores: http://ro.gnjoy.com/news/probability/View.asp?category=4&seq=1941558&curpage=1
Event Enriched Ores: http://ro.gnjoy.com/news/probability/View.asp?category=4&seq=1941567&curpage=1
Diffstat (limited to 'npc/merchants')
-rw-r--r-- | npc/merchants/advanced_refiner.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/merchants/advanced_refiner.txt b/npc/merchants/advanced_refiner.txt index e75912f4c..0d53dab87 100644 --- a/npc/merchants/advanced_refiner.txt +++ b/npc/merchants/advanced_refiner.txt @@ -93,7 +93,7 @@ payon,157,146,6 script Suhnbi#cash 4_M_03,{ mes "[Suhnbi]"; mes "Clang! Clang! Clang!"; - if (getequippercentrefinery(.@part) > rand(100) || getequippercentrefinery(.@part) > rand(100)) { + if (getequippercentrefinery(.@part, true) > rand(100)) { successrefitem .@part; next; emotion e_no1; @@ -123,7 +123,7 @@ S_RefineValidate: mes "Would you like to continue?"; next; if(select("Yes", "No") == 1) { - if (getequippercentrefinery(getarg(3)) < 100) { + if (getequippercentrefinery(getarg(3), true) < 100) { if (getarg(0)) { mes "[Suhnbi]"; mes "Wow!!"; |