zapsolarwarrior Posted February 13, 2021 Posted February 13, 2021 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
Gukahn Posted February 13, 2021 Posted February 13, 2021 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.
justbob2 Posted February 14, 2021 Posted February 14, 2021 I see Version 7.1e is out. I'm rolling along with 7.1d. If I download 7.1e do I need to start over?
fishburger67 Posted February 15, 2021 Author Posted February 15, 2021 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.
fishburger67 Posted February 15, 2021 Author Posted February 15, 2021 22 hours ago, justbob2 said: I see Version 7.1e is out. I'm rolling along with 7.1d. If I download 7.1e do I need to start over? No, just uninstall the old and install the new and continue on.
OnionHeart Posted February 24, 2021 Posted February 24, 2021 There's an Archerone rape scene? When I encountered him in Mia's dungeon, him and his bandits just attacked me until I killed them.
ShinsFortress Posted February 25, 2021 Posted February 25, 2021 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.
fishburger67 Posted February 25, 2021 Author Posted February 25, 2021 On 2/23/2021 at 7:32 PM, OnionHeart said: There's an Archerone rape scene? When I encountered him in Mia's dungeon, him and his bandits just attacked me until I killed them. You have to have short main quest OFF.
CliftonJD Posted February 27, 2021 Posted February 27, 2021 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
ShinsFortress Posted February 28, 2021 Posted February 28, 2021 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?
CliftonJD Posted February 28, 2021 Posted February 28, 2021 31 minutes ago, ShinsFortress said: For the non-coders among us, what does your patch do or fix? Simple list? basically it fixes name loss for pahe(paradise halls) slaves. if you're not using pahe, should have no effect
fishburger67 Posted March 1, 2021 Author Posted March 1, 2021 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.
GenPatton Posted March 6, 2021 Posted March 6, 2021 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?
GenPatton Posted March 6, 2021 Posted March 6, 2021 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?
death Posted March 6, 2021 Posted March 6, 2021 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
Kraken876 Posted March 6, 2021 Posted March 6, 2021 i might be extremely blind but i cannot seem to find the file to download on the love slave mod for the flower girls.
fishburger67 Posted March 8, 2021 Author Posted March 8, 2021 On 3/5/2021 at 8:52 PM, GenPatton said: So are these both increases in frequency, or decreases? About the same for radiant quests but more reliable. An increase for the the demands for sex from once a day to twice a day. 1
fishburger67 Posted March 8, 2021 Author Posted March 8, 2021 On 3/6/2021 at 2:09 AM, death said: if you dont mind me asking why was it removed It was a pain to get right and it seemed pretty sick to enslave her.
fishburger67 Posted March 8, 2021 Author Posted March 8, 2021 On 3/6/2021 at 4:46 AM, Kraken876 said: i might be extremely blind but i cannot seem to find the file to download on the love slave mod for the flower girls. There are two. Go to the main mod page here and click the download button.
adsfjöalksdjf Posted March 9, 2021 Posted March 9, 2021 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
fishburger67 Posted March 10, 2021 Author Posted March 10, 2021 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.
MPFernando Posted March 10, 2021 Posted March 10, 2021 3 minutes ago, fishburger67 said: Yes, they work here as well. isn't that already included in the LL versions? or is it just on the sexlab version?
fishburger67 Posted March 10, 2021 Author Posted March 10, 2021 Just now, mistergiggles said: isn't that already included in the LL versions? Probably not. I added that as a request. I couldn't include it because I didn't get permission from Xider (he seems to be MIA). 1
adsfjöalksdjf Posted March 10, 2021 Posted March 10, 2021 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
Onahole Posted March 19, 2021 Posted March 19, 2021 I love the mod, thanks for your work!✌️ I wanna know how long it's The Dark Possession and where it ends.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now