Unfound Loot
Thank you for responding so quickly! However - for example "Currency" has a default setting of 1.2 (resulting in a 102% chance of removal) and the "Food" removal default of 1.3 (110.55% as mentioned above) - would not both these settings result in the exact same result, i.e. that it would remove all such items since they both are reduced by 100%+? I have been playing with the default settings for like 1 hour just running around and looting stuff, and i have so far found both currency (caps) and food items in containers, actually in most food containers like fridge/ovens there have been quite a lot of food. So clearly it does not remove 100%+ of those items with these settings. That is why I assume I am misunderstanding something.
I just explained how it works, you clearly did not even read my post.110.55% removal chance means that dice rolls 1-99 are guaranteed to be lower in 10% of cases.Yep, I completely forgot how it works:
1 - Math.pow(1 - 0.85, 1.1)
where 0.85 is the global chance, 1.1 is a modifier
1 reply, 3 total
1 reply, 2 total
(1 - Math.pow(1 - 0.85, 1.1)) * 100 = 87.59203999415325
where 0.85 is the global chance, and 1.1 is a modifier
You can test different values in the browser console (F12 -> Console)
(1 - Math.pow(1 - 0.90, 1.5)) * 100 = 96.83772233983163
(1 - Math.pow(1 - 0.50, 1.2)) * 100 = 56.472471835193794
The point is, the removal chance stays below 100% to compare it with the dice.
1 reply