summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2023-10-01 19:04:53 -0300
committerJesusaves <cpntb1@ymail.com>2023-10-01 19:04:53 -0300
commitc41a42a5d2b13e12796dd43d978e784af75e402c (patch)
treeb625e27187a40b97fb597a8db7de5bcf53f0b00e
parent4549676f02fd973e51852f295277b85617284804 (diff)
downloadserverdata-c41a42a5d2b13e12796dd43d978e784af75e402c.tar.gz
serverdata-c41a42a5d2b13e12796dd43d978e784af75e402c.tar.bz2
serverdata-c41a42a5d2b13e12796dd43d978e784af75e402c.tar.xz
serverdata-c41a42a5d2b13e12796dd43d978e784af75e402c.zip
Oops, I forgot one tier adjustment.
-> Supreme and Silver Gifts no longer found -> Prism Gift chance reduced from 0.3% (base) to 0.001% (base) -> Mysterious Fruit added to 0.01% tier, and Savior Blueprint chance doubled Final net chance for the 0.01% tier is 0.0011% each item (9 possibilities)
-rw-r--r--npc/042-5/ctrl.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/042-5/ctrl.txt b/npc/042-5/ctrl.txt
index fa02b8269..4b51645f6 100644
--- a/npc/042-5/ctrl.txt
+++ b/npc/042-5/ctrl.txt
@@ -145,8 +145,8 @@ function script KamelotTreasure {
.@r=100+rand2(10000)-($KAMELOT_MX[.@g]*2)-getguildlvl(.@g);
// Select treasure list
- if (.@r <= 0) // 0.01% total, 0.025% each
- .@loot=any(MylarinDust, SaviorBlueprint, SupremeGift, HousingLetterIII, TimeFlask, MercCard_EH);
+ if (.@r <= 0) // 0.01% total, 0.001% each
+ .@loot=any(MylarinDust, SaviorBlueprint, SaviorBlueprint, PrismGift, HousingLetterIII, TimeFlask, MercCard_EH, MysteriousFruit);
else if (.@r < 330) // 0.3% each
.@loot=any(MagicApple, EquipmentBlueprintD, DarkPulsar, Halberd, AncientShield, AncientSword, Setzer, MercBoxD, ScrollMagnusHealC, Shemagh);
else