Jump to content

SexLab Alicia - Devious Devices Tweaks Alicia 2023-04-10a, DD 5.2


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

 



×
×
  • Create New...