Welcome to the AFK Mods bug tracker. In order to report an issue, you need to have a VALIDATED account to post one. Once you have followed the link the registration email sent you, please select a project from the drop down menu below. Select “Open New Issue” and fill out the form with as many details as possible.

Please also consider sending your bug report to Bethesda if you are reporting on an issue with Skyrim Special Edition, Fallout 4, or Starfield. Doing so will help everyone on all platforms.

Issue Data
Status: Closed
Issue Type: Bug Report
Project: Unofficial Fallout 4 Patch
Component: Fallout 4: Vanilla
Category: Perks & Stats
Assigned To: Nobody
Platform: All
Severity: Low
Votes: 0
Watching: N/A
Opened By ClockworkBard on Jun 21, 2021 9:20 pm
Closed By Arthmoor on Apr 17, 2024 5:00 pm
Resolution: Fixed
Comment: Fixed for UFO4P 2.1.6 via 33850.

Issue #31452: Black Widow / Lady Killer Reduce Intimidation Chance

 
Previously, Bug #21795 was addressed correcting an issue that prevented the Black Widow or Lady Killer perks from affecting the Intimidation perk due to a variable assignment typo. Now that these are being detected properly, it appears the perks are reducing the chance for success rather than increasing it. This is due to the following line in the OnEffectStart event:
if utility.randomFloat(0.0, 100.0) + perkBonus < pacifyChance.getValue()


I tested in game by adjusting the blackWidow02HoldupBonus global, which defaults to 5.0, while having Rank 2 of Black Widow. I chose values that would guarantee success or failure when applied to the 40% default pacify chance. Changing the value to -140.0 causes all gender-appropriate tests to succeed. Changing it to 140.0 caused them all to fail.

An appropriate change would be:
if utility.randomFloat(0.0, 100.0) < pacifyChance.getValue() + perkBonus

Related Issues: 21795