Deleted member 6984316
Newbie
- Jan 29, 2024
- 56
- 33
I nerfed that buff to oblivion since it was so extreme. Looks like there are a couple of conditions. Basically looks like wearing light or heavy armor must have the _SLS_BikiniArmor keyword.
Edit: Looks like it also only triggers if you do not have the proper bikini or armor license to match what you have equipped.
Code:If HeelsRequired If !akBaseObject.HasKeyword(SexLabNoStrip) && !_SLS_LicExceptionsArmor.HasForm(akBaseObject) If !IsWearingHeels(PlayerRef) Debug.Trace("_SLS_: Bikini curse triggered by: " + akBaseObject.GetName() + " - " + akBaseObject + ". Boots are not heels!")
Code:While i > 0 i -= 1 akBaseObject = PlayerRef.GetWornForm(SlotMasks[i]) If akBaseObject If (akBaseObject as Armor).GetWeightClass() < 2 If !akBaseObject.HasKeyword(_SLS_BikiniArmor) && StorageUtil.GetIntValue(akBaseObject, "SLAroused.IsBikiniArmor", Missing = -1) <= 0 && !akBaseObject.HasKeyword(SexLabNoStrip) && !akBaseObject.HasKeyword(ArmorBoots) && !akBaseObject.HasKeyword(ArmorGauntlets) && !akBaseObject.HasKeyword(ArmorHelmet) && !(akBaseObject).HasKeyword(ArmorShield) If !_SLS_LicExceptionsArmor.HasForm(akBaseObject) Debug.Trace("_SLS_: Bikini curse triggered by: " + akBaseObject.GetName() + " - " + akBaseObject)
Code:; Check body slot is not covered in clothing akBaseObject = PlayerRef.GetWornForm(4) ; Body slot If akBaseObject If (akBaseObject as Armor).GetWeightClass() == 2 ; Is clothes If akBaseObject.HasKeyword(ClothingBody) && !akBaseObject.HasKeyword(SexLabNoStrip) && !_SLS_LicExceptionsArmor.HasForm(akBaseObject) && !akBaseObject.HasKeyword(_SLS_BikiniArmor) && StorageUtil.GetIntValue(akBaseObject, "SLAroused.IsSlootyArmor", Missing = -1) <= 0 && StorageUtil.GetIntValue(akBaseObject, "SLAroused.IsBikiniArmor", Missing = -1) <= 0 Debug.Trace("_SLS_: Bikini curse triggered by: " + akBaseObject.GetName() + " - " + akBaseObject) Menu.BikiniCurseTriggerArmor = akBaseObject ;Debug.Messagebox("_SLS_: Bikini curse triggered by: " + akBaseObject.GetName() + " - " + akBaseObject)
Could you please share these scripts files?