diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-26 15:34:17 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-26 15:34:17 -0200 |
commit | 0a7fee39a87b64a72c03c3ccdd0683c904a0d991 (patch) | |
tree | ff5ebb87b6f2c7311890f8518f26c6d363337b28 /npc/functions/treasure.txt | |
parent | 7c33d9f46270227afdc29c2203b47495463429f2 (diff) | |
download | serverdata-0a7fee39a87b64a72c03c3ccdd0683c904a0d991.tar.gz serverdata-0a7fee39a87b64a72c03c3ccdd0683c904a0d991.tar.bz2 serverdata-0a7fee39a87b64a72c03c3ccdd0683c904a0d991.tar.xz serverdata-0a7fee39a87b64a72c03c3ccdd0683c904a0d991.zip |
There's actually a lot of chests, be more picky with UR drops
Diffstat (limited to 'npc/functions/treasure.txt')
-rw-r--r-- | npc/functions/treasure.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/treasure.txt b/npc/functions/treasure.txt index 952f2973c..75fd3945c 100644 --- a/npc/functions/treasure.txt +++ b/npc/functions/treasure.txt @@ -23,10 +23,10 @@ function script TreasureBox { .@r=rand(0,10000); // Select treasure list - // You're warranted an ultra rare (0.1%) every 99 open chests + // You're warranted an ultra rare (0.1%) every 149 open chests // You're warranted a super rare (1%) every 50 open chests // There's also rares (10%), uncommons (40%) and commons (60%) - if (.@t % 99 == 0 || .@r < 10) + if (.@t % 149 == 0 || .@r < 10) .@loot=any(AtroposMixture, GoldenApple, DivineApple, MercBoxA, SilverGift, Shemagh, EverburnPowder, IridiumOre, PlatinumOre); else if (.@t % 50 == 0 || .@r < 100) .@loot=any(Grenade, SnakeEgg, LachesisBrew, ArrowAmmoBox, CoinBag, BronzeGift, TerraniteOre, LeadOre, TinOre, SilverOre, GoldOre, TitaniumOre, FluoPowder); |