Jump to content

Recommended Posts

5 hours ago, zapsolarwarrior said:

Ok, last question, I swear. Can you make the house carls (ex, lydia) into slaves? Or does that mess with the game? Same with the companions

As long as it is a follower without a Quest attached it should be fine. I would stay away from the companions until you finished their Questline just to be sure.

Link to comment
On 2/12/2021 at 6:29 PM, zapsolarwarrior said:

Ok, last question, I swear. Can you make the house carls (ex, lydia) into slaves? Or does that mess with the game? Same with the companions

Yes, but not recommended.  Their vanilla voices do not go well with the slave voices I cobbled together.

Link to comment
  • 2 weeks later...

 

On 2/13/2021 at 2:29 AM, zapsolarwarrior said:

Ok, last question, I swear. Can you make the house carls (ex, lydia) into slaves? Or does that mess with the game? Same with the companions

 

On 2/15/2021 at 12:37 AM, fishburger67 said:

Yes, but not recommended.  Their vanilla voices do not go well with the slave voices I cobbled together.

 

 

I tried this with several house carls.  It does initially seem jarring the change of voice, but if your suspension of disbelief is strong you could always imagine those voices are roleplayed for submission.

 

The only other issues I had with one of them was that eventually she lost her 'normal' Flower Girl interaction dialogue.  I did not see when it happened, so have not rolled back (too many hours!).  Tried a bunch of ways to fix, failed.  No biggie in the grand scheme of things.

Link to comment

question came to pahe recently, is the miaslair patch still needed for flower girls and what to do about extra requirements in the patch so after updating the sl sex slaves to 7 i looked at love slaves for flower girls and found the same script functions to update but with enough changes from sexlab to flower girls that i could not advise to use the same patch.

behold i bring you a patch for love slaves:

Spoiler

Faction Property PAHPlayerSlaveFaction Auto Hidden

function ScanCellForFollowers(bool doRegister)

    If (Game.GetModByName("paradise_halls.esm") != 255)
        PAHPlayerSlaveFaction = Game.GetFormFromFile(0x0047DB, "paradise_halls.esm") As Faction
        Debug.trace("user has paradise halls loaded")
    EndIf

 

Spoiler

    While (i < NPCcount)
        Actor tmpAk = findFollowers.followers
        
        if(tmpAk.GetLeveledActorBase().GetSex() == 0)    ;;Male    
            maleFollowers = maleFollowers + 1
            debug.trace(tmpAk.GetLeveledActorBase().getName() + " is male")
        elseif((PAHPlayerSlaveFaction != None) && (tmpAk.IsInFaction(PAHPlayerSlaveFaction)))    ;;Pah    
                    femaleFollowers = femaleFollowers + 1
        else
            debug.trace(tmpAk.GetLeveledActorBase().getName() + " is female")
            if(femaleFollowers == 0)
                SSLFollower1.forceRefTo(tmpAk)
            elseif (femaleFollowers == 1)
                SSLFollower2.forceRefTo(tmpAk)
            elseif     (femaleFollowers == 2)
                SSLFollower3.forceRefTo(tmpAk)
            elseif     (femaleFollowers == 3)
                SSLFollower4.forceRefTo(tmpAk)
            endif
            femaleFollowers = femaleFollowers + 1
        endif
        addFollower(tmpAk)
        if(tmpAk.IsInFaction(SexSlave))
            ;Need this up here because trained slaves have the orgy and seduce options
            sexSlaveCount = sexSlaveCount + 1
            if(doRegister && tmpAk.hasKeyWordString("SexSlHasActorScript"))
                ;debug.trace("Slave has Script");
                registerSexSlave(tmpAk)
            endif
        endif
        i = i + 1
    endWhile

 

above is sexslaveframework, next is VernonSexSlaveScript:

Spoiler

Faction Property PAHPlayerSlaveFaction Auto Hidden

function ScanMIasLair()

    If (Game.GetModByName("paradise_halls.esm") != 255)
        PAHPlayerSlaveFaction = Game.GetFormFromFile(0x0047DB, "paradise_halls.esm") As Faction
        Debug.trace("user has paradise halls loaded")
    EndIf

Spoiler

    if( nonSlaveFollowers > 0)
        Actor theActor = none
        FollowerCount = nonSlaveFollowers
        hasFollowers = true
        if(nonSlaveFollowers > 2)
            theActor = notSlaves[2]
            if((PAHPlayerSlaveFaction != None) && (theActor.IsInFaction(PAHPlayerSlaveFaction)))    ;;Pah    
                debug.trace(theActor.GetLeveledActorBase().GetName() + " is a paradise halls slave")
            else
                debug.trace(theActor.GetLeveledActorBase().GetName() + " is a slave candidate")
                SlaveCandidate3.forceRefTo(theActor)
            endif
        endif
        if(nonSlaveFollowers > 1)
            theActor = notSlaves[1]
            if((PAHPlayerSlaveFaction != None) && (theActor.IsInFaction(PAHPlayerSlaveFaction)))    ;;Pah    
                debug.trace(theActor.GetLeveledActorBase().GetName() + " is a paradise halls slave")
            else
                debug.trace(theActor.GetLeveledActorBase().GetName() + " is a slave candidate")
                SlaveCandidate2.forceRefTo(theActor)
            endif
        endif
        theActor = notSlaves[0]
        if((PAHPlayerSlaveFaction != None) && (theActor.IsInFaction(PAHPlayerSlaveFaction)))    ;;Pah    
            debug.trace(theActor.GetLeveledActorBase().GetName() + " is a paradise halls slave")
        else
            debug.trace(theActor.GetLeveledActorBase().GetName() + " is a slave candidate")
            SlaveCandidate1.forceRefTo(theActor)
        endif
    else
        hasFollowers = false
        FollowerCount = 0
    endif

 

MiasLair - Pahe compatibility Patch for FlowerGirl Love Slaves 7.1 SSe.7z

Link to comment
22 hours ago, CliftonJD said:

question came to pahe recently, is the miaslair patch still needed for flower girls and what to do about extra requirements in the patch so after updating the sl sex slaves to 7 i looked at love slaves for flower girls and found the same script functions to update but with enough changes from sexlab to flower girls that i could not advise to use the same patch.

behold i bring you a patch for love slaves:

  Reveal hidden contents

Faction Property PAHPlayerSlaveFaction Auto Hidden

function ScanCellForFollowers(bool doRegister)

    If (Game.GetModByName("paradise_halls.esm") != 255)
        PAHPlayerSlaveFaction = Game.GetFormFromFile(0x0047DB, "paradise_halls.esm") As Faction
        Debug.trace("user has paradise halls loaded")
    EndIf

 

  Reveal hidden contents

    While (i < NPCcount)
        Actor tmpAk = findFollowers.followers
        
        if(tmpAk.GetLeveledActorBase().GetSex() == 0)    ;;Male    
            maleFollowers = maleFollowers + 1
            debug.trace(tmpAk.GetLeveledActorBase().getName() + " is male")
        elseif((PAHPlayerSlaveFaction != None) && (tmpAk.IsInFaction(PAHPlayerSlaveFaction)))    ;;Pah    
                    femaleFollowers = femaleFollowers + 1
        else
            debug.trace(tmpAk.GetLeveledActorBase().getName() + " is female")
            if(femaleFollowers == 0)
                SSLFollower1.forceRefTo(tmpAk)
            elseif (femaleFollowers == 1)
                SSLFollower2.forceRefTo(tmpAk)
            elseif     (femaleFollowers == 2)
                SSLFollower3.forceRefTo(tmpAk)
            elseif     (femaleFollowers == 3)
                SSLFollower4.forceRefTo(tmpAk)
            endif
            femaleFollowers = femaleFollowers + 1
        endif
        addFollower(tmpAk)
        if(tmpAk.IsInFaction(SexSlave))
            ;Need this up here because trained slaves have the orgy and seduce options
            sexSlaveCount = sexSlaveCount + 1
            if(doRegister && tmpAk.hasKeyWordString("SexSlHasActorScript"))
                ;debug.trace("Slave has Script");
                registerSexSlave(tmpAk)
            endif
        endif
        i = i + 1
    endWhile

 

above is sexslaveframework, next is VernonSexSlaveScript:

  Reveal hidden contents

Faction Property PAHPlayerSlaveFaction Auto Hidden

function ScanMIasLair()

    If (Game.GetModByName("paradise_halls.esm") != 255)
        PAHPlayerSlaveFaction = Game.GetFormFromFile(0x0047DB, "paradise_halls.esm") As Faction
        Debug.trace("user has paradise halls loaded")
    EndIf

  Reveal hidden contents

    if( nonSlaveFollowers > 0)
        Actor theActor = none
        FollowerCount = nonSlaveFollowers
        hasFollowers = true
        if(nonSlaveFollowers > 2)
            theActor = notSlaves[2]
            if((PAHPlayerSlaveFaction != None) && (theActor.IsInFaction(PAHPlayerSlaveFaction)))    ;;Pah    
                debug.trace(theActor.GetLeveledActorBase().GetName() + " is a paradise halls slave")
            else
                debug.trace(theActor.GetLeveledActorBase().GetName() + " is a slave candidate")
                SlaveCandidate3.forceRefTo(theActor)
            endif
        endif
        if(nonSlaveFollowers > 1)
            theActor = notSlaves[1]
            if((PAHPlayerSlaveFaction != None) && (theActor.IsInFaction(PAHPlayerSlaveFaction)))    ;;Pah    
                debug.trace(theActor.GetLeveledActorBase().GetName() + " is a paradise halls slave")
            else
                debug.trace(theActor.GetLeveledActorBase().GetName() + " is a slave candidate")
                SlaveCandidate2.forceRefTo(theActor)
            endif
        endif
        theActor = notSlaves[0]
        if((PAHPlayerSlaveFaction != None) && (theActor.IsInFaction(PAHPlayerSlaveFaction)))    ;;Pah    
            debug.trace(theActor.GetLeveledActorBase().GetName() + " is a paradise halls slave")
        else
            debug.trace(theActor.GetLeveledActorBase().GetName() + " is a slave candidate")
            SlaveCandidate1.forceRefTo(theActor)
        endif
    else
        hasFollowers = false
        FollowerCount = 0
    endif

 

MiasLair - Pahe compatibility Patch for FlowerGirl Love Slaves 7.1 SSe.7z

 

For the non-coders among us, what does your patch do or fix?  Simple list?

Link to comment

Having an odd issue.  When I go back to the Palace, and ask one of the girls to do an orgy, instead of her going to the head of the stairs as usual, everybody runs outside.  Is there a marker they're supposed to go to do the little "Hey, everybody..." speech, or how is that determined?

Link to comment
On 3/1/2021 at 3:05 AM, fishburger67 said:

Version 7.1g is available

 

This version changes the frequency that radiant quests are obtained for male players.  It also changes the time that slaves will demand sex to about twice a day.

So are these both increases in frequency, or decreases?

Link to comment
On 2/9/2021 at 6:24 PM, fishburger67 said:

 

You can later recruit Vess as a follower and then take her down to Volkar.

 

You can no longer enslave the Jarl's daughter.  I have removed that.

if you dont mind me asking why was it removed

Link to comment

Hi,

 

I am really enjoying the mod so far. Really great job. I noticed you also had a version of this mod uploaded on NexusMods with an additional sex voices. Can I use those sex voices together with the version on here? Or are you planning on also making the the sex voices available for the this version?

 

Again really great mod :)

Link to comment
3 hours ago, adsfjöalksdjf said:

Hi,

 

I am really enjoying the mod so far. Really great job. I noticed you also had a version of this mod uploaded on NexusMods with an additional sex voices. Can I use those sex voices together with the version on here? Or are you planning on also making the the sex voices available for the this version?

 

Again really great mod :)

Yes, they work here as well.

Link to comment
17 hours ago, adsfjöalksdjf said:

Hi,

 

I am really enjoying the mod so far. Really great job. I noticed you also had a version of this mod uploaded on NexusMods with an additional sex voices. Can I use those sex voices together with the version on here? Or are you planning on also making the the sex voices available for the this version?

 

Again really great mod :)

 

14 hours ago, fishburger67 said:

Yes, they work here as well.

Great thank you :)

Link to comment
  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   1 member

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use