About This File
Prevent Alicia from stripping during combat when she is bound by Devious Devices.
Â
I have added a keyword check in the "Alicia_AliasFollower.pex" script and programmed it to interrupt when it finds "zad_DeviousHeavyBondage."
Â
; Chance of undressing before combat
If ((Utility.RandomInt(0,100)>60) && ((AliciaActor.WornHasKeyword(ClothKeyword)) || (AliciaActor.WornHasKeyword(ArmorKeyword))) )
If Game.GetModByName("Devious Devices - Integration.esm") !=255
If AliciaActor.WornHasKeyword(Game.GetFormFromFile(0x05226C, "Devious Devices - Integration.esm") as Keyword) ; zad_DeviousHeavyBondage
Debug.Notification("Alicia can't undress while binded")
Return
EndIf
EndIf
; AliciaActor.unequipall()
form[] FemaleEquipment = SexLab.StripActor(AliciaActor)
EndIf
Â