diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 4 | ||||
-rw-r--r-- | npc/merchants/socket_enchant.txt | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index cc8f09a35..b034de572 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -26,6 +26,10 @@ KarLaeda Date Added ====== +2007/03/14 + * Reduced the chance to socket enchant a C rank item to 40% [Playtester] + - info comes from kRO monthly and jRO players + - this is based on "better too low than too high" 2007/03/01 * The Sign: Fixed possible exploit, thanks to happylight [Lupus] - Added npc/sample/npc_test_setitemx.txt diff --git a/npc/merchants/socket_enchant.txt b/npc/merchants/socket_enchant.txt index ee1818ab6..20f6b0c21 100644 --- a/npc/merchants/socket_enchant.txt +++ b/npc/merchants/socket_enchant.txt @@ -667,7 +667,7 @@ function script addslot2 { function script f_weapon_c { - set @rateit,50; //success rate + set @rateit,40; //success rate set @addprice,200000; set @itemup,1010; set @itemupiece,10; @@ -764,7 +764,7 @@ function script f_weapon_s2 { function script f_armor_c { - set @rateit,50; //success rate + set @rateit,40; //success rate set @addprice,200000; set @itemup,999; set @itemupiece,3; |