Skyrim Patreon mods

5.00 star(s) 2 Votes
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?
 

Asura066

Member
May 3, 2018
371
226




I have never used this, but I understand that you need a modified version of sexlab or select that dwarf from console and give it a scale 0.8 (setscale 0.8).
This is the not latest the latest version is 6.3 or 6.8
 

Bramus

Newbie
Sep 4, 2018
28
11
Someone with this armor? I have the free one just4u.ff7re but for some reason is not working for me
 

CallMeSlade

Newbie
Jul 20, 2023
16
4




I have never used this, but I understand that you need a modified version of sexlab or select that dwarf from console and give it a scale 0.8 (setscale 0.8).

i mean i need the petite animation, they come as dwarfs as default.
 

MrChow96

Newbie
Dec 13, 2020
22
72
Anyone got original T2/T3 recolours of ? No? Anyway...

About 1 year ago I managed to locate the DAZ project he used ( ) and converted existing textures myself, but the rest (T3 tier) seems to be his own creation. It was collecting dust on my hard drive, remembered it's there and decided to share.

Also included my own 3BA conversion. It's not perfect, but should work in most cases. Prebuilt meshes NOT included, build them in BodySlide. Enjoy.



P.S. Yes, I know Ashtoreth ported this exact outfit, but it was an incomplete port with less items, bugged transparency and just the default blue texture.
 
Last edited:
5.00 star(s) 2 Votes