diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/012-1/shoppakep.txt | 4 | ||||
-rw-r--r-- | npc/015-2/contrabandist.txt | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/npc/012-1/shoppakep.txt b/npc/012-1/shoppakep.txt index de41acefb..143785cba 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 > 80) + if (.@i > 85) return Coal; - else if (.@i < 20) + else if (.@i < 25) return IronOre; else return HalfEggshell; diff --git a/npc/015-2/contrabandist.txt b/npc/015-2/contrabandist.txt index b6026cd31..4599e2a41 100644 --- a/npc/015-2/contrabandist.txt +++ b/npc/015-2/contrabandist.txt @@ -37,11 +37,11 @@ close; sellitem DarkDesertMushroom, .DDMPrice, 1; if (getarg(0,0) & 1) - sellitem IronOre, 2000, 1; + sellitem IronOre, 2900, 1; if (getarg(0,0) & 2) - sellitem TitaniumOre, 4000, 1; + sellitem TitaniumOre, 4700, 1; if (getarg(0,0) & 4) - sellitem LeatherPatch, 2500, 1; + sellitem LeatherPatch, 3200, 1; if (getarg(0,0) & 8) sellitem GoldenPearlRing, 1000000, 1; if (getarg(0,0) & 16) @@ -51,7 +51,7 @@ close; if (getarg(0,0) & 64) sellitem CasinoCoins, rand(100,3000), 1; if (getarg(0,0) & 128) - sellitem RawLog, -1, 1; + sellitem RawLog, 1950, 1; } OnInit: |