diff options
author | HoraK-FDF <horak-fdf@web.de> | 2025-01-08 16:04:08 +0000 |
---|---|---|
committer | Led Mitz <smoothshifter@tuta.io> | 2025-01-08 16:04:08 +0000 |
commit | 9448d4ac90c13b717e7e5a246cdbc77b826042fe (patch) | |
tree | 483f15d76c41c654f83f4a7706f32ef794f78773 /world/map/npc/019-1/snowman.txt | |
parent | fd9d9489de68ce56789446c7741265d8ffe672fc (diff) | |
download | serverdata-9448d4ac90c13b717e7e5a246cdbc77b826042fe.tar.gz serverdata-9448d4ac90c13b717e7e5a246cdbc77b826042fe.tar.bz2 serverdata-9448d4ac90c13b717e7e5a246cdbc77b826042fe.tar.xz serverdata-9448d4ac90c13b717e7e5a246cdbc77b826042fe.zip |
Better Weight Checks for Cindy, Illia and xmas quests
- for Illia if you go overweight to a certain point you can exclude bow and helm from the drops and get 1/3 chance on the heart this works on common rewards too to exclude some drops.
- for cindy this prevents drops to ground
- iten check was way to much on xmas core so i made it heaviest reward * 3 instead
- removed weight check of santa helper since presents weight more than any of the rewards
- added a comment to snowman
Co-authored-by: Led Mitz <smoothshifter@tuta.io>
Diffstat (limited to 'world/map/npc/019-1/snowman.txt')
-rw-r--r-- | world/map/npc/019-1/snowman.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/world/map/npc/019-1/snowman.txt b/world/map/npc/019-1/snowman.txt index 98b749df..ef26f3dd 100644 --- a/world/map/npc/019-1/snowman.txt +++ b/world/map/npc/019-1/snowman.txt @@ -43,7 +43,7 @@ L_Sure: if(countitem("CactusPotion") < @cactus_amount) goto L_NoItem; getinventorylist; - if (@inventorylist_count > 99) + if (@inventorylist_count > 99) // Needs no weight check since all the ingredients weigh more than the reward goto L_TooMany; delitem "Candy", @candy_amount; delitem "ChocolateBar", @chocolate_amount; |