diff options
-rw-r--r-- | npc/012-1/shoppakep.txt | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/npc/012-1/shoppakep.txt b/npc/012-1/shoppakep.txt index 3f3e47e2c..85105d507 100644 --- a/npc/012-1/shoppakep.txt +++ b/npc/012-1/shoppakep.txt @@ -14,13 +14,7 @@ close; function ShoppaKepItem { - .@i=rand2(0,100); - if (.@i > 75) - return Aquada; - else if (.@i < 35) - return Manana; - else - return HalfEggshell; + return any(Aquada, Manana, HalfEggshell, SpearmintTea); } OnInit: @@ -46,7 +40,7 @@ OnInit: sellitem Chagashroom, -1, 3; sellitem PiouFeathers, -1, .ThisRebootAmou; - sellitem .CurrentItem, -1, rand2(1,4); + sellitem .CurrentItem, -1, rand2(2,6); end; @@ -69,7 +63,7 @@ OnClock0546: stopselling(.CurrentItem); .CurrentItem=ShoppaKepItem(); - sellitem .CurrentItem, -1, rand2(1,4); + sellitem .CurrentItem, -1, rand2(2,6); end; // Pay your taxes! |