diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-22 13:33:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-22 13:33:56 -0300 |
commit | e403eeaf44f4178b622af8026acbcac640e21380 (patch) | |
tree | 359f6be03510f4f419434ded5045ada6a9c59b70 | |
parent | 05f791456d881a2f70b8f25df3a6b1dd5204504c (diff) | |
download | serverdata-e403eeaf44f4178b622af8026acbcac640e21380.tar.gz serverdata-e403eeaf44f4178b622af8026acbcac640e21380.tar.bz2 serverdata-e403eeaf44f4178b622af8026acbcac640e21380.tar.xz serverdata-e403eeaf44f4178b622af8026acbcac640e21380.zip |
ShoppaKep is better without rare items (Leather Shirt, Jeans Shorts, Iron Ore/Coal)
Replace the random feature with Mananas and Aquadas
-rw-r--r-- | npc/012-1/shoppakep.txt | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/npc/012-1/shoppakep.txt b/npc/012-1/shoppakep.txt index 143785cba..884c925de 100644 --- a/npc/012-1/shoppakep.txt +++ b/npc/012-1/shoppakep.txt @@ -14,10 +14,10 @@ function ShoppaKepItem { .@i=rand(0,100); - if (.@i > 85) - return Coal; - else if (.@i < 25) - return IronOre; + if (.@i > 75) + return Aquada; + else if (.@i < 35) + return Manana; else return HalfEggshell; } @@ -31,8 +31,6 @@ OnInit: tradertype(NST_MARKET); - sellitem LeatherShirt, 125000, 1; - sellitem JeansShorts, 125000, 1; sellitem CottonSkirt, 100000, 1; sellitem MiniSkirt, 100000, 1; sellitem ShortTankTop, 100000, 1; |