In :
Scriptname holdupEffectScript extends ActiveMagicEffect
At :
Event OnEffectFinish(Actor akTarget, Actor akCaster)
line :
193; 195; 200; 202;
The goal is obviously to change the value of the variable "perkBonus" in order to make intimidation easier on opposing sex character if you have the relevant perk.
However bethesda wrote
perkBonus == blackWidow02HoldupBonus.getValue()
which will simply return 1 and do nothing else.
those line need to be changed to :
perkBonus = blackWidow02HoldupBonus.getValue()
so that perkBonus get actually assigned a value.