Jump to content

Recommended Posts

Posted (edited)

Is there anyway to make bimbo clothes compatible with BBLS? I bimbofied my follower and NPC while using BBLS clothing features to clothes them. The problem is that my bimbofied follower and npc keep reequip those bimbo outfit.

 

I don't want to use the no clothes patch since I am using some of those outfit for other npc as well.

 

Also, it seems like bimbo tonic completely removes the debuff and doesn't reapply when the duration expired.

Edited by DrSeptimus
Posted
On 9/29/2023 at 2:32 AM, AphroditesEye said:

If you want to tell the lore of the curse's origin, maybe you could do some "pilgrimage" type thing an NPC finds a book detailing the origin of the curse and they follow the instructions trying to figure out what caused it, either to cure it or make use of it themselves for less than charitable purposes. As they follow the book they begin to become bimbofied themselves, and throughout the quest it slowly becomes clear that they are in fact retracing the steps of the Daedra who created the curse and eventually had it turned on her by Sanguine. Makes a full quest, a new bimbo, and some lore drop that's interactive and not just "here's a twenty page essay read this". Add some corruption to the player if they partake and recreate the book themselves as to making choices different from the book, their choices either adding no corruption, normal corruption, or more than usual if they follow it different ways.

Hell, that could be what "Journey of a Bimbo Babe" is, since that's what you named the book.

 

Yeah, it'd make for an interesting quest eventually. But maybe for now I'll rewrite "Journey of a Bimbo Babe" to be a loredump instead of a Crassius Curio joke, just to have it in-game somewhere.

 

On 10/2/2023 at 8:17 AM, phily101 said:

Honestly a tie in with Milk mod economy and the milking machines would be pretty nice

 

I like that idea. Maybe I'll get around to it at some point! Adding BoS integration into MME would be easy (gain corruption when milked?) since it's a one-line event to add to MME scripts. Adding MME into BoS (the bimbo curse also makes you a milkmaid?) might be a bit trickier, since I don't know how MME handles itself on the backend. I'll take a look (eventually!).

 

13 hours ago, GrimReaperCalls said:

@jib_buttkiss

Yo, big fan of the mod! The writing is really well done.

I've got a question; I'm using the DBVO mod for player voice (Elevenlabs - Bella Preset), and have generated some files for this mod. I was wondering if it's okay with you if I share them here? There are about ~400 voiced lines so far, might make more in the future.

 

Thanks, glad you're enjoying it!

 

Yeah, post anything you want, as long as it gets linked to in this thread for everyone else to find! Out of curiosity, did you solve the "giggle"-read-as-a-word thing? Though, I guess it wouldn't be such a problem for the player voice- I don't think they *giggle* as much as NPCs do.

 

12 hours ago, DrSeptimus said:

Is there anyway to make bimbo clothes compatible with BBLS? I bimbofied my follower and NPC while using BBLS clothing features to clothes them. The problem is that my bimbofied follower and npc keep reequip those bimbo outfit.

 

I don't want to use the no clothes patch since I am using some of those outfit for other npc as well.

 

Also, it seems like bimbo tonic completely removes the debuff and doesn't reapply when the duration expired.

 

Are the bimbos giving BBLS difficulties by re-equipping their gear full bimbos, or midway through the curse? The curse tends to enforce the outfits while it's progressing, but once it's complete it'd just be a case of their outfits being reapplied for some reason. I'd guess you could use another mod (or console commands maybe?) to change their "outfit" to something else.

The no clothes patch doesn't do that anyway, it just replaces the bimbo clothes with vanilla meshes.

 

For the tonic, on the player or on NPCs?

 

Posted (edited)
1 hour ago, jib_buttkiss said:

Are the bimbos giving BBLS difficulties by re-equipping their gear full bimbos, or midway through the curse? The curse tends to enforce the outfits while it's progressing, but once it's complete it'd just be a case of their outfits being reapplied for some reason. I'd guess you could use another mod (or console commands maybe?) to change their "outfit" to something else.

The no clothes patch doesn't do that anyway, it just replaces the bimbo clothes with vanilla meshes.

 

For the tonic, on the player or on NPCs?

 

 

Re-equpping their gear full bimbos after the curse. I use BBLS to strip them naked and applied another outfit via BBLS, but after a period of time or moving to new area; those bimbo outfit would be reapplied again. Using console command doesn't change anything. Even if I remove the bimbo outfit via console command, those bimbo outfit would be reapplied after a period of time.

 

As for the tonic, is on the player. It remove all debuff and doesn't reapply it the moment you have sex or it expired.

 

Also, does being Bimbo means your magicka always less 1 mana? 

 

Edited by DrSeptimus
Posted
2 hours ago, jib_buttkiss said:

 

I like that idea. Maybe I'll get around to it at some point! Adding BoS integration into MME would be easy (gain corruption when milked?) since it's a one-line event to add to MME scripts. Adding MME into BoS (the bimbo curse also makes you a milkmaid?) might be a bit trickier, since I don't know how MME handles itself on the backend. I'll take a look (eventually!).

 

This should be fairly easy - MME provides two spells that can just *make* a milkmaid or milkslave (milkslave being the better option for non-follower NPCs as it doesn't hit the player's maid slot count, though there is still a limit to how many milkslaves there can be, I think it's 100 actors)

A basic implementation would be

MilkQUEST MME = Quest.getQuest("MilkQUEST") as MilkQUEST
if MME
    if doSomeCheckForFollowersHere(Bimbo)
        MME.MME_MakeMilkmaid_Spell.Cast(Bimbo, Bimbo)
    else
        MME.MME_MakeMilkslave_Spell.Cast(Bimbo, Bimbo)
    endif
endif

 

MME also sends a modevent that you can catch when an actor has finished being milked, in the form of MME_MilkingDone(Actor akActor, int bottles, int boobgasmcount, int cumcount), though I would be careful adding corruption on MME milking as it could be very easy to end up with the player/followers becoming a bimbo with little to no recourse or way to avoid it - it is very easy to become a milkmaid outside of minimal mod setups.

Posted
3 hours ago, jib_buttkiss said:

I like that idea. Maybe I'll get around to it at some point! Adding BoS integration into MME would be easy (gain corruption when milked?) since it's a one-line event to add to MME scripts. Adding MME into BoS (the bimbo curse also makes you a milkmaid?) might be a bit trickier, since I don't know how MME handles itself on the backend. I'll take a look (eventually!).
 

Could integration with Soulgem oven (SGO) be done as well. Popping out soulgems seems pretty... corrupting :D

Posted
1 hour ago, DrSeptimus said:

 

Re-equpping their gear full bimbos after the curse. I use BBLS to strip them naked and applied another outfit via BBLS, but after a period of time or moving to new area; those bimbo outfit would be reapplied again. Using console command doesn't change anything. Even if I remove the bimbo outfit via console command, those bimbo outfit would be reapplied after a period of time.

 

As for the tonic, is on the player. It remove all debuff and doesn't reapply it the moment you have sex or it expired.

 

Also, does being Bimbo means your magicka always less 1 mana? 

 

 

So I'd guess that you're giving them new "outfits" (a set of clothes for them to have in their inventory), but you're not changing their "Outfit" (the game's OTFT record attached to the NPC that controls their default clothes).

 

The debuff thing was fixed in 1.6.1 (according to my changelog at least, I don't actually remember), and if you didn't start a new game between 1.6.0 and 1.6.1 (and why would you have, really?) the change won't come through.

 

Uh, I think it might, actually. I've just checked in CK and for some reason I set it so that the corruption indicator active effects ("Bimbo Corruption: High", etc) come with a -1 magicka penalty. I suspect that was a hack to make them show up as red negative effects that I just forgot to ever resolve.

 

36 minutes ago, Okshi91 said:

 

This should be fairly easy - MME provides two spells that can just *make* a milkmaid or milkslave (milkslave being the better option for non-follower NPCs as it doesn't hit the player's maid slot count, though there is still a limit to how many milkslaves there can be, I think it's 100 actors)

A basic implementation would be

MilkQUEST MME = Quest.getQuest("MilkQUEST") as MilkQUEST
if MME
    if doSomeCheckForFollowersHere(Bimbo)
        MME.MME_MakeMilkmaid_Spell.Cast(Bimbo, Bimbo)
    else
        MME.MME_MakeMilkslave_Spell.Cast(Bimbo, Bimbo)
    endif
endif

 

MME also sends a modevent that you can catch when an actor has finished being milked, in the form of MME_MilkingDone(Actor akActor, int bottles, int boobgasmcount, int cumcount), though I would be careful adding corruption on MME milking as it could be very easy to end up with the player/followers becoming a bimbo with little to no recourse or way to avoid it - it is very easy to become a milkmaid outside of minimal mod setups.

 

Well, that saves me digging through MME's code, thanks.  If it's that simple, with some easy events I can catch, I'll probably do it. But yeah, it'd probably be too harsh to attach anything to OnMilked. I have MME installed but haven't properly used it in a while to remember the ins and outs, I'll go through and find something a bit more fair.

 

19 minutes ago, ebbluminous said:

Could integration with Soulgem oven (SGO) be done as well. Popping out soulgems seems pretty... corrupting :D

 

Eh, maybe? It's really not my thing. But as usual, I'll take a look and if it's easy, why not?

Posted (edited)
On 10/4/2023 at 8:21 AM, jib_buttkiss said:

 

Yeah, post anything you want, as long as it gets linked to in this thread for everyone else to find! Out of curiosity, did you solve the "giggle"-read-as-a-word thing? Though, I guess it wouldn't be such a problem for the player voice- I don't think they *giggle* as much as NPCs do.

 

Cool, thanks!

I couldn't get the tool to generate any decent giggles despite trying for quite a bit, it just comes out as someone reading "heehee", so I replaced the giggles with the sound-clips from this mod on a few, and left it silent on the others. Maybe the tool will have an option for non-spoken "sounds" in a future version.

 

I've uploaded the MP3 files as well if anyone wants to modify them.

 

Edit: Just to clarify, this mod requires DBVO to be installed, which is available on nexus: https://www.nexusmods.com/skyrimspecialedition/mods/84329

 

Update Oct 5th: Added some more lines, now a bit over 500 lines.
 

Update Nov 16th: Additional voice lines (880 now), and added lip-movements to all. Contains a fair bit of the new dialogue for 1.7

 

 

 

 

MP3 files Bimbo BoS 1.7.7z DBVO Bella - BoS 1.7.7z

Edited by GrimReaperCalls
Posted
8 hours ago, jib_buttkiss said:

 

Yeah, it'd make for an interesting quest eventually. But maybe for now I'll rewrite "Journey of a Bimbo Babe" to be a loredump instead of a Crassius Curio joke, just to have it in-game somewhere.

 

 

I like that idea. Maybe I'll get around to it at some point! Adding BoS integration into MME would be easy (gain corruption when milked?) since it's a one-line event to add to MME scripts. Adding MME into BoS (the bimbo curse also makes you a milkmaid?) might be a bit trickier, since I don't know how MME handles itself on the backend. I'll take a look (eventually!).

 

 

Thanks, glad you're enjoying it!

 

Yeah, post anything you want, as long as it gets linked to in this thread for everyone else to find! Out of curiosity, did you solve the "giggle"-read-as-a-word thing? Though, I guess it wouldn't be such a problem for the player voice- I don't think they *giggle* as much as NPCs do.

 

 

Are the bimbos giving BBLS difficulties by re-equipping their gear full bimbos, or midway through the curse? The curse tends to enforce the outfits while it's progressing, but once it's complete it'd just be a case of their outfits being reapplied for some reason. I'd guess you could use another mod (or console commands maybe?) to change their "outfit" to something else.

The no clothes patch doesn't do that anyway, it just replaces the bimbo clothes with vanilla meshes.

 

For the tonic, on the player or on NPCs?

 

Something I think would tie in really well would be corruption gain after every orgasm/insemination during Love Sickness! I would absolutely LOVE to see that if it's possible!
On another note I am so excited for the 1.7 release and love seeing all the new ideas flood in on this forum!

Posted
5 hours ago, jib_buttkiss said:

 

So I'd guess that you're giving them new "outfits" (a set of clothes for them to have in their inventory), but you're not changing their "Outfit" (the game's OTFT record attached to the NPC that controls their default clothes).

 

The debuff thing was fixed in 1.6.1 (according to my changelog at least, I don't actually remember), and if you didn't start a new game between 1.6.0 and 1.6.1 (and why would you have, really?) the change won't come through.

 

Uh, I think it might, actually. I've just checked in CK and for some reason I set it so that the corruption indicator active effects ("Bimbo Corruption: High", etc) come with a -1 magicka penalty. I suspect that was a hack to make them show up as red negative effects that I just forgot to ever resolve.

 

 

So would the -1 magicka debuff be fix at next update?

 

As for outfit, it is basically that. BBLS have outfit features that allowed player to stash clothes, use dialogue to change outfit in accordance to what outfit was stash inside.

Posted
1 hour ago, Midna SushiSnoot said:

Something I think would tie in really well would be corruption gain after every orgasm/insemination during Love Sickness! I would absolutely LOVE to see that if it's possible!
On another note I am so excited for the 1.7 release and love seeing all the new ideas flood in on this forum!

+1 to this.

 

Also another idea... Once the curse is triggered, each stage of it makes the effects of the Love Sickness mod more powerful/more likely to trigger...

Posted (edited)

To me I'd say this mod is basically complete if you just add the simple change of being able to configure corruption gain. Everything else from that point on just makes this great mod more amazing.

And by that I just mean being able to configure how much corruption you gain from being raped or the typical ways you gain it.

Edited by Somebodyelse120
Posted

  

12 hours ago, GrimReaperCalls said:

Cool, thanks!

I couldn't get the tool to generate any decent giggles despite trying for quite a bit, it just comes out as someone reading "heehee", so I replaced the giggles with the sound-clips from this mod on a few, and left it silent on the others. Maybe the tool will have an option for non-spoken "sounds" in a future version.

 

I've uploaded the MP3 files as well if anyone wants to modify them.

 

Jeez, it's hard not to be impressed with Elevenlabs' voice AI- some of those even capture the tone the line should be said with!

 

9 hours ago, Midna SushiSnoot said:

Something I think would tie in really well would be corruption gain after every orgasm/insemination during Love Sickness! I would absolutely LOVE to see that if it's possible!
On another note I am so excited for the 1.7 release and love seeing all the new ideas flood in on this forum!

 

It'd be great, and it's even something I looked into! But Love Sickness doesn't really have any capabilities for interfacing with it, so it'd be a real pain the ass to try and do. But HexBolt has said that they're interested in adding some interfacing features when they're a bit less busy, so, eventually, yeah!

 

8 hours ago, DrSeptimus said:

 

So would the -1 magicka debuff be fix at next update?

 

As for outfit, it is basically that. BBLS have outfit features that allowed player to stash clothes, use dialogue to change outfit in accordance to what outfit was stash inside.

 

Yeah, I'll clean the -1 magicka up, it was only ever a kludge that I forgot about.

 

Yeah, sounds like BBLS is giving them the items, but the bimbo's default outfit is reapplying itself for some reason. I'm sure you have, but have you tried using the console to remove the bimbo's default items?

 

7 hours ago, Somebodyelse120 said:

To me I'd say this mod is basically complete if you just add the simple change of being able to configure corruption gain. Everything else from that point on just makes this great mod more amazing.

And by that I just mean being able to configure how much corruption you gain from being raped or the typical ways you gain it.

 

Yeah... it's one of those things that I really should have just done already (at least for the main sources- rape, dremora sex, bimbo sex), except I'm lazy and it's so much MCM glorp... I'll probably do it this version. Probably...

Posted
15 minutes ago, jib_buttkiss said:

 

Jeez, it's hard not to be impressed with Elevenlabs' voice AI- some of those even capture the tone the line should be said with!

 

 

The cool thing with Elevenlabs is that you can somewhat influence the tone of sentences by expanding them or adding "tonal keywords", such as "Yes, yes, that's right! - I exclaimed enthusiastically", which you then cut out in post. Cadence can be modified with pauses (...) and emphasis can be added by using quotation marks. It's quite versatile, but I haven't figured out how to properly do muffled speech, laughing, giggles, etc. without some serious jank lol.

Posted
1 hour ago, GrimReaperCalls said:

 

The cool thing with Elevenlabs is that you can somewhat influence the tone of sentences by expanding them or adding "tonal keywords", such as "Yes, yes, that's right! - I exclaimed enthusiastically", which you then cut out in post. Cadence can be modified with pauses (...) and emphasis can be added by using quotation marks. It's quite versatile, but I haven't figured out how to properly do muffled speech, laughing, giggles, etc. without some serious jank lol.


I actually didn't know this, and I use Elevenlabs myself. Thanks for the useful tips.

Posted

@jib_buttkiss I've been really enjoying this mod in my latest playthrough. It has a lot of fun features (especially with YPS installed) that really add an immersive fashion/sexual corruption mechanic that isn't too terribly game-breaking, with tons of fun NPCs and quests to discover too. Plus I really like how well it utilizes racemenu morphs over time. The only issue I've discovered on my end is that it doesn't play too terribly nice with follower systems like Nether's Follower Framework when you have it manage outfits, but that's to be expected and can be worked around if you're careful.

Also, I'm not sure if something like this has been said before in this thread, but I'd love to see some sort of alternate form of the Bimbo curse that goes down a more femdom path for the player. Currently it's still plenty of fun to RP a domme female PC who wants to bimbofy npcs while managing a curse of her own, but it'd be a lot of fun to have an alternate version of the Bimbo Curse for more femdom-oriented PCs

 

There could be another version of the Good Girl Rules (let's call it "Bad Bitch Manifesto" or something lol) that puts the player down a path with it's own unique TFs/effects/questlines to turn the player into a ripped Amazonian warrior that takes what she wants, takes shit from no one, and punishes her enemies with Death by Snu-Snu

Posted
4 hours ago, AphroditesEye said:

Do you plan on possibly adding any compatibility with Public Whore yourself? It seems like it'd pair with this mod phenomenally. Especially given the fate of a few NPCs.

 

I didn't have any plans for it, but only because I've never really looked into Public Whore. Like, all I know about it is what the one-paragraph summary on the mod page says, and also the really excellent ass on the body preset in the mod photos.

I'm not sure what integration could be done on BoS's side- being bimbofied forces you to count as a Public Whore maybe? From what I know, it'd flow better the other way, where being a Public Whore gives you corruption, but that would require (small) edits on PW's end.

 

3 hours ago, b00tyblues said:

@jib_buttkiss I've been really enjoying this mod in my latest playthrough. It has a lot of fun features (especially with YPS installed) that really add an immersive fashion/sexual corruption mechanic that isn't too terribly game-breaking, with tons of fun NPCs and quests to discover too. Plus I really like how well it utilizes racemenu morphs over time. The only issue I've discovered on my end is that it doesn't play too terribly nice with follower systems like Nether's Follower Framework when you have it manage outfits, but that's to be expected and can be worked around if you're careful.

Also, I'm not sure if something like this has been said before in this thread, but I'd love to see some sort of alternate form of the Bimbo curse that goes down a more femdom path for the player. Currently it's still plenty of fun to RP a domme female PC who wants to bimbofy npcs while managing a curse of her own, but it'd be a lot of fun to have an alternate version of the Bimbo Curse for more femdom-oriented PCs

 

There could be another version of the Good Girl Rules (let's call it "Bad Bitch Manifesto" or something lol) that puts the player down a path with it's own unique TFs/effects/questlines to turn the player into a ripped Amazonian warrior that takes what she wants, takes shit from no one, and punishes her enemies with Death by Snu-Snu

 

Glad you're having fun with it!

 

For the femdom thing, it's not likely. For starters, it's just not my kind of thing. But also, it seems like it would essentially be a sort of "re-skin" of the bimbo curse- the exact same thing but with different dialogue, morph settings and messages- and they'd be shit because I'd be writing for something I'm not into, have never seen and don't care about. Basically, it'd be a lot of effort that I'd rather spend on the rest of the mod, doing a bad job, making something I don't personally like. So, uh... probably not.

 

But if you were really keen, you would be able to convert the Bimbo curse into a basic Amazon (?) curse yourself. You could use Tes5Edit to copy all the player bimbo dialogue into a new .esp that overwrites BoS's, then edit the dialogue in there. The dialogue still has to fit the same context ("*giggle* Please, let me suck your dick!" leading to a blowjob would need to become "Gimme that cock or I'll rip it off!", and would still lead to a blowjob) since you can't change the flow or scripting, but with some imagination you could make it work.

If you ever want to go back to the bimbo curse, you can just disable your custom .esp. It's something I did with YPS before I made this mod- I repurposed the [Girl Talk] it has into [Slut Talk] for RPing a bimbo NPC. It's not hard to do, the only difficulty is the tedium of doing a full rewrite- but hey, I'd rather you do it than me!

Posted
33 minutes ago, jib_buttkiss said:

 

But if you were really keen, you would be able to convert the Bimbo curse into a basic Amazon (?) curse yourself. You could use Tes5Edit to copy all the player bimbo dialogue into a new .esp that overwrites BoS's, then edit the dialogue in there. The dialogue still has to fit the same context ("*giggle* Please, let me suck your dick!" leading to a blowjob would need to become "Gimme that cock or I'll rip it off!", and would still lead to a blowjob) since you can't change the flow or scripting, but with some imagination you could make it work.

If you ever want to go back to the bimbo curse, you can just disable your custom .esp. It's something I did with YPS before I made this mod- I repurposed the [Girl Talk] it has into [Slut Talk] for RPing a bimbo NPC. It's not hard to do, the only difficulty is the tedium of doing a full rewrite- but hey, I'd rather you do it than me!

 

I'd actually had a similar idea about a kind of way to re-jig the bimbo curse so that it could have variations that fall under one master control (or master timer would probably be a better name) - basically whenever an actor gets the bimbo curse, assigning them a 'curse manager quest' (which would have to have some mechanism to tell the master controller that it exists so that it can be assigned) which then does all the details based upon the manager quest's settings, which could be controlled by the mod that adds the manager quest. But that would likely be something to introduce in a 2.0, as it would probably make for a quite extensive overhaul of the backend system (probably involving unifying the player curse and the NPC curses to be controlled by the same quest) and it would rely on other mod developers to add interesting variations.

 

The basic control flow would be something along the lines of 'Manager Quests enroll with Controller Quest, Controller Quest receives actor to bimbofy, Controller Quest assigns a Manager Quest to the actor, every time the Controller Quest increments the actor's bimbo stage the Controller Quest tells the actor's Manager Quest the new stage and what actor just advanced, the Manager Quest applies effects and controls the story being shown (if any), when the Manager Quest hits the actor's last stage it tells the Controller Quest to stop tracking the actor'

This would take a non-negligible effort to implement though, relies on people adding manager quests (which is by no means guaranteed to happen), and as I said before, is probably best left for if/when you decide to do a major overhaul of the mod's backend. The upshot however is that it would allow people to do stuff like have "Amazonian Domme bimbo" while also having "Giggly slut bimbo" still be an option, as the manager quests would be able to add their own faction stuff and thus have different dialogue variations based on what curse happened to who.

Posted
22 hours ago, GrimReaperCalls said:

Cool, thanks!

I couldn't get the tool to generate any decent giggles despite trying for quite a bit, it just comes out as someone reading "heehee", so I replaced the giggles with the sound-clips from this mod on a few, and left it silent on the others. Maybe the tool will have an option for non-spoken "sounds" in a future version.

 

I've uploaded the MP3 files as well if anyone wants to modify them.

 

MP3 files Bimbo.7z 11.08 MB · 12 downloads

DBVO Bimbo Bella.7z 8.11 MB · 12 downloads

Oh dang just to check, does that DBVO file completely replace all lines for the MC in the main game?

Posted
11 hours ago, jib_buttkiss said:

 Yeah, sounds like BBLS is giving them the items, but the bimbo's default outfit is reapplying itself for some reason. I'm sure you have, but have you tried using the console to remove the bimbo's default items?

 

Don't know if it'd be helpful or not, but the mod NPC Clothes Changer and Maintainer (LE and SE versions) let you remove an NPCs default outfit. Maybe something in the scripts from this mod would give you an idea of how to remove default equipment before equipping the NPCs bimbo outfit.

For what it's worth, I've tried removing default equipment after bimbofication and the NPC still doesn't seem to equip the bimbo gear.

Posted
2 hours ago, phily101 said:

Oh dang just to check, does that DBVO file completely replace all lines for the MC in the main game?

The files I uploaded only add support for about 400 BoS lines, but the original mod does support the full game, and there are plenty of patches for other mods.

 

Dragonborn Voice Over on nexus: https://www.nexusmods.com/skyrimspecialedition/mods/84329

DBVO Bella voice; https://www.nexusmods.com/skyrimspecialedition/mods/89810

DBVO Bella voice patches: https://www.nexusmods.com/skyrimspecialedition/mods/91260

 

Posted
12 hours ago, jib_buttkiss said:

 

I didn't have any plans for it, but only because I've never really looked into Public Whore. Like, all I know about it is what the one-paragraph summary on the mod page says, and also the really excellent ass on the body preset in the mod photos.

I'm not sure what integration could be done on BoS's side- being bimbofied forces you to count as a Public Whore maybe? From what I know, it'd flow better the other way, where being a Public Whore gives you corruption, but that would require (small) edits on PW's end.

 

 

Glad you're having fun with it!

 

For the femdom thing, it's not likely. For starters, it's just not my kind of thing. But also, it seems like it would essentially be a sort of "re-skin" of the bimbo curse- the exact same thing but with different dialogue, morph settings and messages- and they'd be shit because I'd be writing for something I'm not into, have never seen and don't care about. Basically, it'd be a lot of effort that I'd rather spend on the rest of the mod, doing a bad job, making something I don't personally like. So, uh... probably not.

 

But if you were really keen, you would be able to convert the Bimbo curse into a basic Amazon (?) curse yourself. You could use Tes5Edit to copy all the player bimbo dialogue into a new .esp that overwrites BoS's, then edit the dialogue in there. The dialogue still has to fit the same context ("*giggle* Please, let me suck your dick!" leading to a blowjob would need to become "Gimme that cock or I'll rip it off!", and would still lead to a blowjob) since you can't change the flow or scripting, but with some imagination you could make it work.

If you ever want to go back to the bimbo curse, you can just disable your custom .esp. It's something I did with YPS before I made this mod- I repurposed the [Girl Talk] it has into [Slut Talk] for RPing a bimbo NPC. It's not hard to do, the only difficulty is the tedium of doing a full rewrite- but hey, I'd rather you do it than me!

 

Thanks for your honest answer about your thoughts on all this, and for letting us know you have your own preferences for that kind of stuff. You have good ideas for repurposing the dialogue, but was imagining something that would work alongside the normal bimbo path, not a dialogue replacement (ie you could choose whether or not the PC/NPCs go down the bimbo/domme paths). Something like what @Okshi91 described after your comment would be a great approach to expanding options.

It would require a lot more back-end work like they said (and well beyond my modding skills), but it'd be nice to have a framework to build and create alternate dialogue/TF paths for similar bimbo quests.

Posted
16 hours ago, jib_buttkiss said:

I didn't have any plans for it, but only because I've never really looked into Public Whore. Like, all I know about it is what the one-paragraph summary on the mod page says, and also the really excellent ass on the body preset in the mod photos.

I'm not sure what integration could be done on BoS's side- being bimbofied forces you to count as a Public Whore maybe? From what I know, it'd flow better the other way, where being a Public Whore gives you corruption, but that would require (small) edits on PW's end.

 

IIRC, Visio already has plans to do just that, though it's anyone's guess when they get back to it. No need for you to do anything, unless you want your characters to be aware if the player was/is a public whore. I hope it does get added - PW is one of the best consequence mods out there and a soft-dep for BoS would make it even better.

 

Quote

But if you were really keen, you would be able to convert the Bimbo curse into a basic Amazon (?) curse yourself. You could use Tes5Edit to copy all the player bimbo dialogue into a new .esp that overwrites BoS's, then edit the dialogue in there. The dialogue still has to fit the same context ("*giggle* Please, let me suck your dick!" leading to a blowjob would need to become "Gimme that cock or I'll rip it off!", and would still lead to a blowjob) since you can't change the flow or scripting, but with some imagination you could make it work.

If you ever want to go back to the bimbo curse, you can just disable your custom .esp. It's something I did with YPS before I made this mod- I repurposed the [Girl Talk] it has into [Slut Talk] for RPing a bimbo NPC. It's not hard to do, the only difficulty is the tedium of doing a full rewrite- but hey, I'd rather you do it than me!

 

I can confirm this works. That's literally what I do every time you update the mod, though all my dialogue is more "I need sex so I can think straight for the next few hours.", instead of stereotypical bimbo or femdom stuff.

Posted
On 10/5/2023 at 8:46 PM, GrimReaperCalls said:

The files I uploaded only add support for about 400 BoS lines, but the original mod does support the full game, and there are plenty of patches for other mods.

 

Dragonborn Voice Over on nexus: https://www.nexusmods.com/skyrimspecialedition/mods/84329

DBVO Bella voice; https://www.nexusmods.com/skyrimspecialedition/mods/89810

DBVO Bella voice patches: https://www.nexusmods.com/skyrimspecialedition/mods/91260

 

Alright thanks man!

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
×
×
  • Create New...