diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-22 13:29:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-22 13:29:21 -0300 |
commit | e95cb7625e655119d6b14b3d9979f091163953e1 (patch) | |
tree | 90368f9f3d7ac1e403a4f71edd0aa72eb30a6e56 /npc/012-1/shoppakep.txt | |
parent | 17241e0321582042beafeba36a9fda1b4dd23dc2 (diff) | |
download | serverdata-e95cb7625e655119d6b14b3d9979f091163953e1.tar.gz serverdata-e95cb7625e655119d6b14b3d9979f091163953e1.tar.bz2 serverdata-e95cb7625e655119d6b14b3d9979f091163953e1.tar.xz serverdata-e95cb7625e655119d6b14b3d9979f091163953e1.zip |
Reduce ShoppaKep chance of selling Coal/Iron
Diffstat (limited to 'npc/012-1/shoppakep.txt')
-rw-r--r-- | npc/012-1/shoppakep.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/012-1/shoppakep.txt b/npc/012-1/shoppakep.txt index b18dadc66..de41acefb 100644 --- a/npc/012-1/shoppakep.txt +++ b/npc/012-1/shoppakep.txt @@ -14,9 +14,9 @@ function ShoppaKepItem { .@i=rand(0,100); - if (.@i > 70) + if (.@i > 80) return Coal; - else if (.@i < 30) + else if (.@i < 20) return IronOre; else return HalfEggshell; |