Content Consumer Posted April 2, 2015 Posted April 2, 2015 I have a problem with the mod but im sure it happened to other people 1000 times. Can you guys point me to a faq/ common problems thread i can't seem to find it. In case there isn't one i have kinda wierd problem happening. Breasts nodes(i guess ?) are scaling and getting larger but the belly isn't. I have instaled the required mods in this order 1. Dimonized UNP body 2. xp32 maximum skeleton extended 2.5 4. HDT physics extension 5. UNP HDT-PE BBP TBBP from nexus 6. Soul gem oven 2 last What do? Edit: Oh and i forgot to mention ofcourse i have sexlab,fnis and all the good stuff and working properly before you ask. I believe the body mod you've installed doesn't have a belly node, IIRC. Try b3lisario's (UNPB) or Kendo's (UNP).
darkconsole Posted April 2, 2015 Author Posted April 2, 2015 or just bodyslide copy the belly weight from a working body.
darkconsole Posted April 3, 2015 Author Posted April 3, 2015 the next update in the next week will include the red cursor bug fix.
Deathmaw Posted April 3, 2015 Posted April 3, 2015 the next update in the next week will include the red cursor bug fix. Woo glad to hear it. Glad to see you finally tracked it down dark.
j87 Posted April 3, 2015 Posted April 3, 2015 the next update in the next week will include the red cursor bug fix. Thank you so much
darkconsole Posted April 3, 2015 Author Posted April 3, 2015 working on an event and function api for soulgem oven. mostly so i can redo milk slave experience expansion, but it'll be handy for anyone who wants to extend soulgem oven. starting with boob events. Bool Function SendEventGainMilk(Actor who) ;; emit SGO_OnGainMilk(Actor) ;; this event is fired when an actor's amount of milk crosses into the next ;; whole number up. ;; don't emit this event while milking. If(self.IsMilking(who)) Return False EndIf Int e = ModEvent.Create("SGO_OnGainMilk") If(e == 0) Return False EndIf ModEvent.PushForm(e,who) ModEvent.Send(e) Return True EndFunction Int Function GiveMilk(Actor from, Actor to, Int count=1, Bool animate=true) ;; remove milk from one actor and give it to another. take into account that we ;; we might ask for more milk than we can even give. returns the number of milks ;; that were given out. this function is a one stop shop if all you want to do ;; is remove x bottles of milk from one actor and give them to another. by ;; default we will trigger an animation for immersion. Potion milk = self.GetMilkType(from) Int cbefore = self.GetMilkCount(from) Int cdiff = 0 If(cbefore < 1) self.Print(from.GetDisplayName() + " is not ready to be milked.") Return 0 EndIf ;; TODO - animate. this will probably actually remove the animation calls ;; from self.ActionMilk into here when ready. ;; If from==to do self milking animation from zaz animation pack. ;; If from!=to do tit sucking animation from that other animation pack ;; people keep asking me to use. ;; remove milk from the source. self.AdjustMilkWeight(from,(count * -1)) cdiff = cbefore - self.GetMilkCount(from) ;; give to receiver. to.AddItem(milk,cdiff) Return cdiff EndFunction //////////////////////////////// // new functions ////////////// // Action Testing // for defining or testing if we are currently milking. Int SGO.IsMilking(Actor who) Void SGO.SetMilking(Actor who, Int state) // Weight Management // to check or modify the exact amount of milk carried. Void SGO.AdjustMilkWeight(Actor who, Float amount) Float SGO.GetMilkWeight(Actor who) // Bottle Management // to check how many full bottles we have. Int SGO.GetMilkCount(Actor who) // Type Management // to check what type of milk an actor should give. Potion SGO.GetMilkType(Actor who) // Milking and Receiving. Int SGO.GiveMilk(Actor from, Actor to, Int count=1, Bool animate=true) // Listening for milk gain events. self.RegisterForModEvent("SGO_OnGainMilk","OnGainMilk") Event OnGainMilk(Form who) // do stuff. EndEvent
Red.Rahloo Posted April 3, 2015 Posted April 3, 2015 i hate asking stupid question v207 is alot smaller then version 206 do i install both and overwrite 206 with 207 ? or install 207 only , tnx (im gonna do try and fail for now )
chajapa Posted April 4, 2015 Posted April 4, 2015 darkconsole, While you're rebuilding things... Any chance you'd care to build in some detection of breast feeding animation playing? Detect breastfeeding animation, milking happens. Either by adding milk to player inventory or simply having them drink the milk and gain whatever buffs are attached to it. Ed86 has this in Milk Mod and it makes it easy for JUGs to come along and doveetail nicely with the mod.
Monoman1 Posted April 4, 2015 Posted April 4, 2015 i hate asking stupid question v207 is alot smaller then version 206 do i install both and overwrite 206 with 207 ? or install 207 only , tnx (im gonna do try and fail for now ) Just use the latest versionsee description: Removed the PSD files from the download, lowering the file size from 16mb to 1mb.
darkconsole Posted April 4, 2015 Author Posted April 4, 2015 darkconsole, While you're rebuilding things... Any chance you'd care to build in some detection of breast feeding animation playing? Detect breastfeeding animation, milking happens. Either by adding milk to player inventory or simply having them drink the milk and gain whatever buffs are attached to it. Ed86 has this in Milk Mod and it makes it easy for JUGs to come along and doveetail nicely with the mod. Look at the code i pasted four posts up from here
sapho888 Posted April 5, 2015 Posted April 5, 2015 This actually happened in the last version but I wanted to thank you for putting in the fertility multiplier option.
Nephenee13 Posted April 7, 2015 Posted April 7, 2015 Why can my female character not knock up other females even when Female-Female cum is activated in Sexlab?
fredfunk Posted April 9, 2015 Posted April 9, 2015 Great Mod but I have run into an issue with the update from v207 to v208. NPC's are no longer dropping their milk on the ground when milked (its in their inventory but marked for stealing). I have tried toggling the NPC drop milk setting in the MCM and resetting the mod with no success. Am I supposed to clean save when updating this mod (which seems fraught with danger in Skyrim with things involving scripts) or is it a straight replacement (which is what I did with Mod Organizer). I suspect its my game but thought I would let you know in case a bug has crept in. "Update" just ran a quick and dirty test swapping back to v207 on my current save(which had been running v208) and the milk drops fine when using v207
sidfu Posted April 9, 2015 Posted April 9, 2015 Why can my female character not knock up other females even when Female-Female cum is activated in Sexlab? if u want as female to get others preg u have to get one of the mods that makes sexlab think of your charcter as male. there around 3 of them i use the one immersive gender change.
darkconsole Posted April 9, 2015 Author Posted April 9, 2015 Great Mod but I have run into an issue with the update from v207 to v208. NPC's are no longer dropping their milk on the ground when milked (its in their inventory but marked for stealing). I have tried toggling the NPC drop milk setting in the MCM and resetting the mod with no success. Am I supposed to clean save when updating this mod (which seems fraught with danger in Skyrim with things involving scripts) or is it a straight replacement (which is what I did with Mod Organizer). I suspect its my game but thought I would let you know in case a bug has crept in. "Update" just ran a quick and dirty test swapping back to v207 on my current save(which had been running v208) and the milk drops fine when using v207 no you are right. i don't even have to go look at the code to know how i messed that up, i know exactly where. i have another update for tonight or tomorrow night probably tomorrow night for some other stuff ill stick that in.
handsandarrows Posted April 9, 2015 Posted April 9, 2015 I just started using this some day ago and really like it! Thank you! I only have one question, i recently noticed Ring you can craft in the forge that makes character store Sperm as potion, so i craft it and put on her.. And now every time she has sex she gets a Potion which is great, but it no longer makes her impregnate with Soul Gem, is it intended? I can either get Soul Gem or potion?
Content Consumer Posted April 9, 2015 Posted April 9, 2015 I just started using this some day ago and really like it! Thank you! I only have one question, i recently noticed Ring you can craft in the forge that makes character store Sperm as potion, so i craft it and put on her.. And now every time she has sex she gets a Potion which is great, but it no longer makes her impregnate with Soul Gem, is it intended? I can either get Soul Gem or potion? That is intended. You should also have some new spells... I think they're alteration spells... that allow you to use those potions to impregnate yourself or NPCs.
dweezer Posted April 10, 2015 Posted April 10, 2015 So, I haven't been following this one that closely and still have a in progress save based on v203 with MSE as well. What's the best practice for updating to 209?
darkconsole Posted April 10, 2015 Author Posted April 10, 2015 I just started using this some day ago and really like it! Thank you! I only have one question, i recently noticed Ring you can craft in the forge that makes character store Sperm as potion, so i craft it and put on her.. And now every time she has sex she gets a Potion which is great, but it no longer makes her impregnate with Soul Gem, is it intended? I can either get Soul Gem or potion? yes. you either get the bottle of sperm, or you absorb it into your body and make a gem. don't take this like im being a dick, but, "duh" lol. there is an inseminate spell you can use on yourself or a target to use your sperm to grow gems though. So, I haven't been following this one that closely and still have a in progress save based on v203 with MSE as well. What's the best practice for updating to 209? Do a save before the upgrade just in case you need to roll back, but honestly, it should roll up fine.
Skyrimfloo Posted April 10, 2015 Posted April 10, 2015 Are you uploading an update soon, then? I'm actually planning about working on an add-on that would basically be a JUGs + Fill Her Up for this one. I guess I can wait for the update then, specially if you're working on making it more framework-like. Another thing I wanted to use your mod as a base was something related to birthing things other than gems. For example, linking this one and Untamed, or my own (still unfinished, yeah, I'm slow as fuck) taming mod. I wonder if the birthing sequence in your mod is easy to hook into and change the soulgem popping for something else, like eggs or other items? If not, that'd be a really nice thing to have. My only pet peeve with this sort of mods is the fact that I love the concept of milking NPCs of their "fluids", but I wish there were some better animations that worked with this concept. Even if it was just a handjob and a breast grope animation having a potion bottle in the hand. I don't like relying on weird milking machine armors for that, and having a tied up NPC drop bottled milk and semen is kinda funny, lol. Actually, an idea comes to my mind. Since there are animations for drinking from things, would it be possible to force a drinking animation after a sex scene, and explain the bottle o' spunk as if your character spit it in?
Nephenee13 Posted April 10, 2015 Posted April 10, 2015 Its really inconvenient that when playing a Futa character you can only knock up women when set to male, but can't get knocked up yourself unless you turn yourself back to female. similar with futa NPCs. Is there some setting that could be added to make sure that female characters can always get knocked up, regardless of their sexlab gender?
Skyrimfloo Posted April 10, 2015 Posted April 10, 2015 Its really inconvenient that when playing a Futa character you can only knock up women when set to male, but can't get knocked up yourself unless you turn yourself back to female. similar with futa NPCs. Is there some setting that could be added to make sure that female characters can always get knocked up, regardless of their sexlab gender? I think that wouldn't be impossible, but it would depend on how you got junk on your girl. I don't really dig that so I don't know how you handle this sort of character. Is it a female character with a "strapon" such as SOS for females? If that's the case, it would be as simple as allowing your character to be impregnated (keeping her as a "woman" by sexlab standards) and then checking for some condition that would be unique to futas... for example a particular schlong equipped. Out of curiosity, what are the ways to create a futa character? The dificulty of that would depend on how many and how different they are.
Nephenee13 Posted April 10, 2015 Posted April 10, 2015 Its really inconvenient that when playing a Futa character you can only knock up women when set to male, but can't get knocked up yourself unless you turn yourself back to female. similar with futa NPCs. Is there some setting that could be added to make sure that female characters can always get knocked up, regardless of their sexlab gender? I think that wouldn't be impossible, but it would depend on how you got junk on your girl. I don't really dig that so I don't know how you handle this sort of character. Is it a female character with a "strapon" such as SOS for females? If that's the case, it would be as simple as allowing your character to be impregnated (keeping her as a "woman" by sexlab standards) and then checking for some condition that would be unique to futas... for example a particular schlong equipped. Out of curiosity, what are the ways to create a futa character? The dificulty of that would depend on how many and how different they are. You use a SoS addon that puts a penis on a female character, that works just like a SoS penis. You then use Gender Change or Immersive Gender Change to set your character as male, so they'll use male animations with females. But SGO requires that the SEXLAB gender of a character be female in order to become pregnant, and their gender to be male to make a female pregnant. This is distinct from the character's SKYRIM gender, which should be what is considered. I'm generally ok with requiring a Sexlab Male Gender for impregnation, but any character with a female SKYRIM gender should be able to become pregnant.
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