jib_buttkiss Posted February 16, 2023 Author Posted February 16, 2023 (edited) 21 hours ago, foreveraloneguy said: And after completely zapping the bodygen stuff, Tarria is still all jacked up. It's like there's some LE morph code running against her. That's the only thing I can think of that could make her look like that Found it. CC_LyvviePart1, stage 20. There's some of the old code in there that manually morphs her body. I missed it when testing the bodygen because I just spawned her using the console for that, skipping that stage. I'll sort that out for the next version, but if you want to fix it now yourself, you can open the quest in creation kit and remove all the code after ;make her busty in the stage 20 fragment. (they're not commented out in the mod, that was me just now) 13 hours ago, foreld said: Can anyone advise what settings to set the body, for SSE version that would be like in 1, 4 and 6 screenshots to the file? Or explain what slider does. Those body shapes are a result of this mod affecting those NPCs and changing their bodies. You can see my default body shape in screenshots 2 and 3. The screenshots show the default sizes, but the sliders in the MCM let you adjust those (to go even bigger if you wanted, or smaller). Try changing a slider then using the "Test on Player" button to see what it does. Edited February 16, 2023 by jib_buttkiss 1
foreveraloneguy Posted February 16, 2023 Posted February 16, 2023 16 hours ago, jib_buttkiss said: Found it. CC_LyvviePart1, stage 20. There's some of the old code in there that manually morphs her body. I missed it when testing the bodygen because I just spawned her using the console for that, skipping that stage. I'll sort that out for the next version, but if you want to fix it now yourself, you can open the quest in creation kit and remove all the code after ;make her busty in the stage 20 fragment. (they're not commented out in the mod, that was me just now) Those body shapes are a result of this mod affecting those NPCs and changing their bodies. You can see my default body shape in screenshots 2 and 3. The screenshots show the default sizes, but the sliders in the MCM let you adjust those (to go even bigger if you wanted, or smaller). Try changing a slider then using the "Test on Player" button to see what it does. I looked, and similar code shows up in a few other scripts as well. qf_cc_lyvviepart2_080c2892.psc qf_cc_kickerquest_082c2270.psc And then you've got different code in, among others, QF_CC_PriestBimbo_07489EA3.psc ] function enboobenNPC(actor targetBimbo, float stepDecimal) ; get current morph sizes float breastsSize = NiOverride.GetMorphValue(targetBimbo, "Breasts") float breastsSmallSize = NiOverride.GetMorphValue(targetBimbo, "BreastsSmall") float breastsSSHSize = NiOverride.GetMorphValue(targetBimbo, "BreastsSSH") float BreastsFantasySize = NiOverride.GetMorphValue(targetBimbo, "BreastsFantasy") float PushUp= NiOverride.GetMorphValue(targetBimbo, "PushUp") float breastsSizeNew = breastsSize - 0.9/stepDecimal float breastsSmallSizeNew = breastsSmallSize - 0.3/stepDecimal float breastsSSHSizeNew = breastsSSHSize +0.7/stepDecimal float BreastsFantasySizeNew = BreastsFantasySize + 0.3/stepDecimal float PushUpNew= PushUp + 0.1/stepDecimal ; set new sizes NiOverride.SetMorphValue(targetBimbo, "Breasts",breastsSizeNew) NiOverride.SetMorphValue(targetBimbo, "BreastsSmall",BreastsSmallSizeNew) NiOverride.SetMorphValue(targetBimbo, "BreastsSSH",breastsSSHSizeNew) NiOverride.SetMorphValue(targetBimbo, "BreastsFantasy",BreastsFantasySizeNew) NiOverride.SetMorphValue(targetBimbo, "PushUp",PushUpNew) ;do nio update NiOverride.UpdateModelWeight(targetBimbo) endFunction On SE, that " float breastsSizeNew = breastsSize - 0.9/stepDecimal" and anything similar is going to have the same effect by morphing in the opposite direction intended.
Code Serpent Posted February 16, 2023 Posted February 16, 2023 18 hours ago, jib_buttkiss said: Found it. CC_LyvviePart1, stage 20. There's some of the old code in there that manually morphs her body. I missed it when testing the bodygen because I just spawned her using the console for that, skipping that stage. 19 minutes ago, foreveraloneguy said: I looked, and similar code shows up in a few other scripts as well. Just a tip for fellow mod makers, NotePad++ lets you search an entire folder. Go to Search->'Find In Files', and select the script source folder of your mod (I'm assuming you're using Mod Organizer) and search for 'SetBodyMorph'. It'll show you which files include it. 1
jib_buttkiss Posted February 16, 2023 Author Posted February 16, 2023 (edited) 24 minutes ago, foreveraloneguy said: I looked, and similar code shows up in a few other scripts as well. qf_cc_lyvviepart2_080c2892.psc qf_cc_kickerquest_082c2270.psc And then you've got different code in, among others, QF_CC_PriestBimbo_07489EA3.psc ] function enboobenNPC(actor targetBimbo, float stepDecimal) ; get current morph sizes float breastsSize = NiOverride.GetMorphValue(targetBimbo, "Breasts") float breastsSmallSize = NiOverride.GetMorphValue(targetBimbo, "BreastsSmall") float breastsSSHSize = NiOverride.GetMorphValue(targetBimbo, "BreastsSSH") float BreastsFantasySize = NiOverride.GetMorphValue(targetBimbo, "BreastsFantasy") float PushUp= NiOverride.GetMorphValue(targetBimbo, "PushUp") float breastsSizeNew = breastsSize - 0.9/stepDecimal float breastsSmallSizeNew = breastsSmallSize - 0.3/stepDecimal float breastsSSHSizeNew = breastsSSHSize +0.7/stepDecimal float BreastsFantasySizeNew = BreastsFantasySize + 0.3/stepDecimal float PushUpNew= PushUp + 0.1/stepDecimal ; set new sizes NiOverride.SetMorphValue(targetBimbo, "Breasts",breastsSizeNew) NiOverride.SetMorphValue(targetBimbo, "BreastsSmall",BreastsSmallSizeNew) NiOverride.SetMorphValue(targetBimbo, "BreastsSSH",breastsSSHSizeNew) NiOverride.SetMorphValue(targetBimbo, "BreastsFantasy",BreastsFantasySizeNew) NiOverride.SetMorphValue(targetBimbo, "PushUp",PushUpNew) ;do nio update NiOverride.UpdateModelWeight(targetBimbo) endFunction On SE, that " float breastsSizeNew = breastsSize - 0.9/stepDecimal" and anything similar is going to have the same effect by morphing in the opposite direction intended. I can't see that in QF_CC_LyvviePart2, do you mean the section in stage 100 labelled ";adjust lyv4 body to be boobier than normally possible "? The code there is commented out with ;'s so won't run so it should be ok. The KickerQuest one is attached to stage 99, which I used for testing and never gets triggered, so that shouldn't be an issue. As for the PriestBimbo part... Ugh. I thought I wrote that to use the values from the MCM for the bimbo morphs. Guess not. I'll change that over. Thanks for digging those out, it saved me a good bit of searching. 4 minutes ago, Code Serpent said: Just a tip for fellow mod makers, NotePad++ lets you search an entire folder. Go to Search->'Find In Files', and select the script source folder of your mod (I'm assuming you're using Mod Organizer) and search for 'SetBodyMorph'. It'll show you which files include it. That'd be useful. I really should get a proper environment set up... Edited February 16, 2023 by jib_buttkiss
belegost Posted February 17, 2023 Posted February 17, 2023 (edited) Somebody earlier posted a suggestion for some sort of lengthy quest to cure yourself of bimbo curse. Having played for several dozen hours now, I have to admit, the novelty wears off and I now second that suggestion. I am now trying to actively push to complete several questlines. I turned off or suspended several other sex-related mods in order to cut on distractions, but forced bimbo dialogue poping up once every several hours is starting to become slightly annoying. The MCM toggle doesn't turn it off and if I set it to 24h I still need to go to MCM and turn it on then off once a day to get rid of it. The message boxes which pops up every now and then and force me to undress or masturbate have the tendency to show up at the most unfortunate moments as well. The other day I had my PC start masturbating during a scripted event just before the fight with Harkon. Needles to say I had to reload the whole area because the game soft locked as a result. If not a quest, than at least a debug option to suspend the whole mod (akin to similar function in e.g. SLTR) would be a welcome addition. Edited February 17, 2023 by belegost 2
Miauzi Posted February 17, 2023 Posted February 17, 2023 15 minutes ago, belegost said: Wenn es keine Quest ist, dann wäre zumindest eine Debug-Option zum Anhalten des gesamten Mods (ähnlich einer ähnlichen Funktion in zB SLTR) eine willkommene Ergänzung. I would be very much in favor of that - it would help me a lot with my planned game. Quote The other day I had my PC start masturbating during a scripted event just before the fight with Harkon. Needles to say I had to reload the whole area because the game soft locked as a result. ? I was afraid that something like this could happen and you actually experienced it. This strengthens my idea of "quieting" the player with the means that "Laura" uses in her bondage shop. In the dialogue about the chastity belt, Laura reacts to the player's comment (the "fumbling" in the crotch area) by fixing his arms on his back! Sure - the bound (and gagged) dragonborn chick can't fight herself... ...the question arises as to whether the overpowering Serana with her death magicians and her succubi army can crush Harkon alone - or whether the use of the "Ariel Bow" (by the player) is absolutely necessary. Sure - the idea that Serana brings the dragon's blood tied up to her father as a drooling, always horny chick and makes it clear to him that she's only been playing with him the whole time - is very appealing ?
Code Serpent Posted February 17, 2023 Posted February 17, 2023 35 minutes ago, belegost said: I am now trying to actively push to complete several questlines. I turned off or suspended several other sex-related mods in order to cut on distractions, but forced bimbo dialogue poping up once every several hours is starting to become slightly annoying. The MCM toggle doesn't turn it off and if I set it to 24h I still need to go to MCM and turn it on then off once a day to get rid of it. The message boxes which pops up every now and then and force me to undress or masturbate have the tendency to show up at the most unfortunate moments as well. The other day I had my PC start masturbating during a scripted event just before the fight with Harkon. Needles to say I had to reload the whole area because the game soft locked as a result. A check to the masturbation/stripping events to see if the player is in a dialogue or crafting menu might help with this (Use UI.IsMenuOpen). And maybe an option to limiting most events to only occur in cities and towns (Check for the LocTypeHabitation keyword on the player's location).
Wut1969 Posted February 17, 2023 Posted February 17, 2023 19 minutes ago, Code Serpent said: A check to the masturbation/stripping events to see if the player is in a dialogue or crafting menu might help with this (Use UI.IsMenuOpen). And maybe an option to limiting most events to only occur in cities and towns (Check for the LocTypeHabitation keyword on the player's location). I actually would welcome such 'unwanted' behavior. I'll admit that it isn't very practical, but should a Bimbo really be fighting Harkon when she's very horny? I don't know if this fight allows for followers to join in, but if it does, that is the way to go (IMHO etc), and otherwise, the PC should try to be cured somewhat or try other tactics to overcome this hurdle; maybe become a succubus and try to fuck him to death or something. Be creative. This is what roleplaying is all about (again IMHO etc) Anyway, that's my 2 cents worth for y'all.
Miauzi Posted February 17, 2023 Posted February 17, 2023 (edited) 25 minutes ago, Wut1969 said: Ich würde ein solches "unerwünschtes" Verhalten eigentlich begrüßen. Ich gebe zu, dass es nicht sehr praktisch ist, aber sollte eine Bimbo wirklich gegen Harkon kämpfen, wenn sie sehr geil ist? Ich weiß nicht, ob dieser Kampf Followern erlaubt, sich anzuschließen, aber wenn ja, ist das der richtige Weg (IMHO usw.), und ansonsten sollte der SC versuchen, etwas geheilt zu werden, oder andere Taktiken ausprobieren, um diese Hürde zu überwinden ; vielleicht ein Sukkubus werden und versuchen, ihn zu Tode zu ficken oder so. Seien Sie kreativ. Das ist es, worum es beim Rollenspiel geht (wieder IMHO usw.) Wie auch immer, das ist meine 2 Cent wert für euch alle. No - no regular followers allowed - they all get stuck at the chapel portal - even those with special AI like "Sofia" or "Recorder" (although I'm not sure about Sofia - she would surely talk Harkon to death) but of course you can use the "collective call" with multi-follower mods - for me it's a teleportation that brings all active companions to the player. But Serana takes an active part in the fight anyway - the new skills - which the mod gives her - allow her to summon a good 1-2 dozen Succubi in the chapel. It's even questionable whether Harkon will ever be able to get to the blood well... ...the Succubi also use death sex - so it's quite possible that one of them is fucking Harkon to death. (but that can only be answered by the mod author himself - who is always adding new crazy creatures) --- Well - in the Serana mod there are weapons (also bows) that initiate sex with the hit person when hit... ...whereby this definitely ends fatally for the person who was hit. Now the question is - are there any animations for sex with a vampire lord at all (I guess so) and does this partially scripted event even allow such a death of Harkon would be a great idea - dova chick shoots Harkon with Serana's sex bow instead of Ariel bow and fucks Harkon to death... ...and thus triggers her transformation into a full-fledged succubus - a "chick succubus" ? and the final comment from Serana: "Well done my favorite pet - that's exactly what I've been training them for weeks" Edited February 17, 2023 by Miauzi
DrSeptimus Posted February 17, 2023 Posted February 17, 2023 What is causing such a deform? I try apply my own body preset and it still somehow doesn't fix it.
jib_buttkiss Posted February 17, 2023 Author Posted February 17, 2023 (edited) 8 hours ago, belegost said: Somebody earlier posted a suggestion for some sort of lengthy quest to cure yourself of bimbo curse. Having played for several dozen hours now, I have to admit, the novelty wears off and I now second that suggestion. I am now trying to actively push to complete several questlines. I turned off or suspended several other sex-related mods in order to cut on distractions, but forced bimbo dialogue poping up once every several hours is starting to become slightly annoying. The MCM toggle doesn't turn it off and if I set it to 24h I still need to go to MCM and turn it on then off once a day to get rid of it. The message boxes which pops up every now and then and force me to undress or masturbate have the tendency to show up at the most unfortunate moments as well. The other day I had my PC start masturbating during a scripted event just before the fight with Harkon. Needles to say I had to reload the whole area because the game soft locked as a result. If not a quest, than at least a debug option to suspend the whole mod (akin to similar function in e.g. SLTR) would be a welcome addition. The bimbo suppression potions are coming at some point, but regarding the forced bimbo dialogues: yeah, you're right: that toggle doesn't work. I just checked and there's a typo in the MCM. Same for the actions (the masturbate, the strip and the "good girl" message box). I'll fix those toggles for the next version. I think that should be everything that interrupts you put on a proper toggle, so if you wanted to ignore the curse you'll be able to. I don't think anything else would be too annoying... But goddamn, the forced masturbation happening right then is just shit luck, there's a 1/30 chance of it happening every hour, the odds of it happening at that exact moment are... well, 1/30 I guess. I might turn that frequency down a a tick, actually. 7 hours ago, Code Serpent said: A check to the masturbation/stripping events to see if the player is in a dialogue or crafting menu might help with this (Use UI.IsMenuOpen). And maybe an option to limiting most events to only occur in cities and towns (Check for the LocTypeHabitation keyword on the player's location). Ah, the crafting menu blocking is useful. I'm all for the events being inconvenient but triggering over menus is just bad design. I think I'll leave them happening in the wilderness. There's already a check to make sure they don't happen during combat which I think should be enough. l don't think you could ever totally prevent it going off during a scripted scene, they trigger all over the place (or could you?). 2 hours ago, DrSeptimus said: What is causing such a deform? I try apply my own body preset and it still somehow doesn't fix it. A bug in the current version causing morphs to be applied twice. There was some discussion on it on the previous few pages of this thread. Edited February 17, 2023 by jib_buttkiss
Wut1969 Posted February 17, 2023 Posted February 17, 2023 4 hours ago, Miauzi said: No - no regular followers allowed - they all get stuck at the chapel portal - even those with special AI like "Sofia" or "Recorder" (although I'm not sure about Sofia - she would surely talk Harkon to death) but of course you can use the "collective call" with multi-follower mods - for me it's a teleportation that brings all active companions to the player. But Serana takes an active part in the fight anyway - the new skills - which the mod gives her - allow her to summon a good 1-2 dozen Succubi in the chapel. Now the question is - are there any animations for sex with a vampire lord at all (I guess so) and does this partially scripted event even allow such a death of Harkon would be a great idea - dova chick shoots Harkon with Serana's sex bow instead of Ariel bow and fucks Harkon to death... ...and thus triggers her transformation into a full-fledged succubus - a "chick succubus" ? The Creature Framework and related mods do have animations for almost everything, including vampire lords, dragon priests and other repulsive things. So I think your solution with Serana sounds like a great solution. 1
DrSeptimus Posted February 17, 2023 Posted February 17, 2023 3 hours ago, jib_buttkiss said: A bug in the current version causing morphs to be applied twice. There was some discussion on it on the previous few pages of this thread. Ahhh I see, thanks for the heads up. Search somehow did't show those up... Between, would you add more hypnosis in the future?
cathytime Posted February 18, 2023 Posted February 18, 2023 Im having an interesting issue that I searched this thread for but couldn't find the exact same issue. When I preview the bimbo body on player, she displays her increased assets & everything perfectly. But when I actually have the curse trigger normally, barely anything changes. I had to reload it several times and move some of the sliders to their max to even notice a difference. Does anyone know why the its not applying correctly?
jib_buttkiss Posted February 18, 2023 Author Posted February 18, 2023 (edited) 9 hours ago, DrSeptimus said: Ahhh I see, thanks for the heads up. Search somehow did't show those up... Between, would you add more hypnosis in the future? It's pretty easy to add more options to the hypnosis, so if I think of anything new I probably will. 25 minutes ago, cathytime said: Im having an interesting issue that I searched this thread for but couldn't find the exact same issue. When I preview the bimbo body on player, she displays her increased assets & everything perfectly. But when I actually have the curse trigger normally, barely anything changes. I had to reload it several times and move some of the sliders to their max to even notice a difference. Does anyone know why the its not applying correctly? The bimbo curse takes time to fully take effect. Every 24 hours it advances a stage (you'll know it has when a message box appears). The body changes apply bit by bit with each stage- the values you set in the MCM are the final shape you'll have once the curse is finished. Edited February 18, 2023 by jib_buttkiss
cathytime Posted February 18, 2023 Posted February 18, 2023 23 minutes ago, jib_buttkiss said: It's pretty easy to add more options to the hypnosis, so if I think of anything new I probably will. The bimbo curse takes time to fully take effect. Every 24 hours it advances a stage (you'll know it has when a message box appears). The body changes apply bit by bit with each stage- the values you set in the MCM are the final shape you'll have once the curse is finished. So even though stage 140/150 says its where the butt/breasts increase in size, it doesnt happen there?
Miauzi Posted February 18, 2023 Posted February 18, 2023 Vor 13 Minuten sagte cathytime: Also, obwohl Stufe 140/150 sagt, dass dort der Hintern/die Brüste an Größe zunehmen, passiert es dort nicht? Then you obviously have a problem... ...so my tests with the mod have shown - that both the body changes for the player and those for the companion work - so that the preview image and the end result match very precisely. It is important that you check this on the naked body.
cathytime Posted February 18, 2023 Posted February 18, 2023 9 minutes ago, Miauzi said: Then you obviously have a problem... ...so my tests with the mod have shown - that both the body changes for the player and those for the companion work - so that the preview image and the end result match very precisely. It is important that you check this on the naked body. I checked on the naked body, it was still not right, so started testing a bit more. I didnt realize that it happened gradually. For the steps up to 140 I didn't have the morphs set properly, so I think that's what messed things up. I just tried it on an older save and stepped through the stages using the CC_BimbofyPlayer and her body changed slowly and ended up matching what the preview suggested it should. Its fine, I thought it was broken, since its not, I can just use showracemenu to adjust some of the sliders to where I wanted them to end up.
DrSeptimus Posted February 18, 2023 Posted February 18, 2023 6 hours ago, jib_buttkiss said: It's pretty easy to add more options to the hypnosis, so if I think of anything new I probably will. Well, you can add equipment that slowly hypnotise the user and even make those equipment you earn from Erina (After curing her) to be repairable. Making those equipment craftable is also 1 of the other option. If you play Fallout 4 with sexual harassment mod, they have a sex approach with gullible dialog. You can add a dialog options for npc to try to fool you into having sex with them if you have low speech. I am also interested to know if you going to add collar option in the future (Speaking of collar, does anyone know where I can find collar in red color? All collar mod seems to be in default black color). 6 hours ago, jib_buttkiss said: The bimbo curse takes time to fully take effect. Every 24 hours it advances a stage (you'll know it has when a message box appears). The body changes apply bit by bit with each stage- the values you set in the MCM are the final shape you'll have once the curse is finished. From my experiences, it seems like there is 2 reason to cause it. One of it was YPS Immersive Fashion and the second one is completing all bimbo quest before fully bimbofied yourself with Anaita note. It seems to progress normally if you doesn't integrate YPS mod with it, complete only Anaita quest and fully bimbofied yourself before proceeding with other quest.
Code Serpent Posted February 18, 2023 Posted February 18, 2023 7 hours ago, jib_buttkiss said: It's pretty easy to add more options to the hypnosis, so if I think of anything new I probably will. Two good options that I don't think are in yet is hypnotizing npcs to be potential followers and marriage candidates by adding them to the appropriate factions.
belegost Posted February 18, 2023 Posted February 18, 2023 Any chance to have bimbo tattoos as a standalone SlaveTats or RaceMenu overlay compatible download? I really like the eye makeup from the mod and would like to have it available on mod profiles where I don't use bimbos. 1
jib_buttkiss Posted February 18, 2023 Author Posted February 18, 2023 20 hours ago, Miauzi said: Then you obviously have a problem... ...so my tests with the mod have shown - that both the body changes for the player and those for the companion work - so that the preview image and the end result match very precisely. It is important that you check this on the naked body. As long as you've got your armor's morphs built properly, you don't need to test it while naked. It might make it easier to judge the sizes without clothes in the way, but you can do the preview with armor on. 13 hours ago, Code Serpent said: Two good options that I don't think are in yet is hypnotizing npcs to be potential followers and marriage candidates by adding them to the appropriate factions. Oh yeah, I probably should have covered the basics like that. I'll add those. 8 hours ago, belegost said: Any chance to have bimbo tattoos as a standalone SlaveTats or RaceMenu overlay compatible download? I really like the eye makeup from the mod and would like to have it available on mod profiles where I don't use bimbos. I'm fairly certain that the eye makeup is YMMP. I'll have to check if it was and add that to the acknowledgements section, actually... But yeah, here's the Slavetats: BoS_Tats.rar
Miauzi Posted February 19, 2023 Posted February 19, 2023 Vor 19 Minuten sagte jib_buttkiss: Solange Sie die Morphs Ihrer Rüstung richtig aufgebaut haben, müssen Sie sie nicht nackt testen. Es könnte es einfacher machen, die Größen ohne Kleidung im Weg zu beurteilen, aber Sie können die Vorschau mit angezogener Rüstung machen. Ultimately, I test it on both - so naked and with clothes but if something doesn't work - you try to reduce the possible error sources - one of them are clothes with faulty morphs or some WITHOUT morphs (yes - they still exist - I have 2-3 favorite outfits in my very extensive wardrobe - none have morphs) I should have written it more extensively... I'm currently struggling with the non-functioning body morph in the "MME" mod - there isn't even a change to be seen naked - although the mod-related growth of the breasts is ultimately secondary... ...because breast growth should be linked to the bimbo levels via "role-play" - i.e. the more milk my char has in her breast to milk - the more "chick" she is ?
jib_buttkiss Posted February 19, 2023 Author Posted February 19, 2023 (edited) Does anyone know a way to force YPS piercing slots into being fully pierced? I'm trying to get it to cooperate with the bimbo piercings. I can mark the clit and nipple ones as Devious piercings to override it for those, but I can't find a way to do that for the ears and navel. I can see an array internal to YPS that tracks piercing status but no access point for it, or even where it gets set in a useful way. Edited February 19, 2023 by jib_buttkiss
DrSeptimus Posted February 19, 2023 Posted February 19, 2023 How to check follower corrupted stage? Between, would you add multiple type of piercing in the future? Would be great to have variety of piercing instead of just 1. I kinda favour the ring piercing like this 1.. I also wondering if you plan to fix DD hair for follower for your next update so we don't have to equip helmet to follower before we bimbofied and change her hair (To prevent DD lock). And thanks for the mod btw, among all LL mod.. this mod is probably the most stable one for me soo far.
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