jcyui Posted April 21, 2021 Posted April 21, 2021 ;prevent other mods form interrupting milking HentaiP.SexLab.ForbidActor(Caster) Caster.AddToFaction(HentaiP.SexLab.AnimatingFaction) Debug.SendAnimationEvent(Caster,"hentaipregnancyZaZAPCHorFC") if Caster.GetFactionRank(HentaiP.HentaiLactatingFaction) > 0 HentaiP.playLeftMilkEffect(Caster) HentaiP.playRightMilkEffect(Caster) endif int howmuchtomilk = 1 if HentaiP.config.MilkAllPC howmuchtomilk = Caster.GetFactionRank(HentaiP.HentaiLactatingFaction) endif How to modify the effects of two nipples at the same time
Ed86 Posted April 21, 2021 Author Posted April 21, 2021 4 hours ago, jcyui said: ;prevent other mods form interrupting milking HentaiP.SexLab.ForbidActor(Caster) Caster.AddToFaction(HentaiP.SexLab.AnimatingFaction) Debug.SendAnimationEvent(Caster,"hentaipregnancyZaZAPCHorFC") if Caster.GetFactionRank(HentaiP.HentaiLactatingFaction) > 0 HentaiP.playLeftMilkEffect(Caster) HentaiP.playRightMilkEffect(Caster) endif int howmuchtomilk = 1 if HentaiP.config.MilkAllPC howmuchtomilk = Caster.GetFactionRank(HentaiP.HentaiLactatingFaction) endif How to modify the effects of two nipples at the same time rewrite milk leak system to use spells art instead of equipment like in DW or MME
jcyui Posted April 22, 2021 Posted April 22, 2021 10 hours ago, Ed86 said: rewrite milk leak system to use spells art instead of equipment like in DW or MME THANK YOU!!!I can't believe that the producer actually replied to me!!!This problem has been bothering me for several days. I was thinking about how to do it while I was sleeping. I found a newbie tutorial for papyrus. I don’t quite understand, can you teach me step by step Sorry for my English, I'm afraid I didn't convey what I wanted to express。so I attach pictures and hope to get help ↓now ↓want to
YojimboRatchet Posted April 22, 2021 Posted April 22, 2021 On 4/11/2021 at 1:07 PM, YojimboRatchet said: will this mod work alongside Fertility Mode ? or does it replace it totally ? anyone ?
fiinhvip Posted April 23, 2021 Posted April 23, 2021 On 4/22/2021 at 8:36 PM, YojimboRatchet said: anyone ? Incompatible... Maybe, because both does the samething
jcyui Posted April 24, 2021 Posted April 24, 2021 if Caster.GetFactionRank(HentaiP.HentaiLactatingFaction) > 0 HentaiP.playLeftMilkEffect(Caster) HentaiP.playRightMilkEffect(Caster) int howmuchtomilk = 1 breast L 59slot breast R 59slot breast L aa 56slot breast R aa 56slot The current situation is that the left breast flows milk, and then the right breast flows milk. How can it be at the same time?
Ed86 Posted April 24, 2021 Author Posted April 24, 2021 5 hours ago, jcyui said: if Caster.GetFactionRank(HentaiP.HentaiLactatingFaction) > 0 HentaiP.playLeftMilkEffect(Caster) HentaiP.playRightMilkEffect(Caster) int howmuchtomilk = 1 breast L 59slot breast R 59slot breast L aa 56slot breast R aa 56slot The current situation is that the left breast flows milk, and then the right breast flows milk. How can it be at the same time? copy, milk effects nifs from DW/MME use CK to make new spell, new magic effect, make new art objects and link to milk effects, link art objects to onhit of magic effect, add new spell to HP scripts, replace playLeftMilkEffect, playRightMilkEffect with new spell 1
jcyui Posted April 24, 2021 Posted April 24, 2021 THANKS FOR Reply!!! 1.add new spell to HP scripts ←How to do this? script is hard。 searched for youtube, but didn't get any 2.replace playLeftMilkEffect, playRightMilkEffect with new spell ←Does This means,replace(playLeftMilkEffect, playRightMilkEffect)to 《my spell》 (caster)
Ed86 Posted April 24, 2021 Author Posted April 24, 2021 4 hours ago, jcyui said: THANKS FOR Reply!!! 1.add new spell to HP scripts ←How to do this? script is hard。 searched for youtube, but didn't get any 2.replace playLeftMilkEffect, playRightMilkEffect with new spell ←Does This means,replace(playLeftMilkEffect, playRightMilkEffect)to 《my spell》 (caster) 1.add a new spell property to hentaipregnancy script, link created spell to that property 2.yes
jcyui Posted April 24, 2021 Posted April 24, 2021 21 minutes ago, Ed86 said: 1.add a new spell property to hentaipregnancy script, link created spell to that property 2.yes Scriptname HentaiMilkSquirtEffect extends ActiveMagicEffect Spell Property Hmilkspell Auto if Caster.GetFactionRank(HentaiP.HentaiLactatingFaction) > 0 Hmilkspell int howmuchtomilk = 1 if HentaiP.config.MilkAllPC thanks for the reply! In the current situation,there is no dripping milk, only animation
jcyui Posted April 25, 2021 Posted April 25, 2021 if Caster.GetFactionRank(HentaiP.HentaiLactatingFaction) > 0 Hmilkspell(Caster) int howmuchtomilk = 1 Compiling "HentaiMilkSquirtEffect"... E:\SteamLibrary\steamapps\common\Skyrim Special Edition\Data\Scripts\Source\temp\HentaiMilkSquirtEffect.psc(26,3): Hmilkspell is not a function or does not exist No output generated for HentaiMilkSquirtEffect, compilation failed. Batch compile of 1 files finished. 0 succeeded, 1 failed. Failed on HentaiMilkSquirtEffect
jcyui Posted April 25, 2021 Posted April 25, 2021 DW_MilkLeakL+DW_MilkLeakR→art→effect→spell I think it's very close to success Are there any errors in the script, please help
Ed86 Posted April 25, 2021 Author Posted April 25, 2021 41 minutes ago, jcyui said: DW_MilkLeakL+DW_MilkLeakR→art→effect→spell I think it's very close to success Are there any errors in the script, please help you did not link Hmilkspell to property that points to spell you want to cast during milking
jcyui Posted April 25, 2021 Posted April 25, 2021 12 minutes ago, Ed86 said: you did not link Hmilkspell to property that points to spell you want to cast during milking Thank you for your reply!!! can you give me the script template so that I can imitate your template to complete this modification I have no idea about script
jcyui Posted April 25, 2021 Posted April 25, 2021 HentaiMilkSquirtEffect←To complete the changes, only need to modify this script file? Or i got it wrong. Hmilkspell(caster)←papyrus Spit out the error report Hmilkspell is not a function or does not exist
Ed86 Posted April 25, 2021 Author Posted April 25, 2021 1 hour ago, jcyui said: HentaiMilkSquirtEffect←To complete the changes, only need to modify this script file? Or i got it wrong. Hmilkspell(caster)←papyrus Spit out the error report Hmilkspell is not a function or does not exist SPELL Property DW_Milkleak_Spell Auto ;Milkleak for females if akActor.GetLeveledActorBase().GetSex() == 1 DW_Milkleak_Spell.cast( akActor ) endif
jcyui Posted April 26, 2021 Posted April 26, 2021 14 hours ago, Ed86 said: SPELL Property DW_Milkleak_Spell Auto ;Milkleak for females if akActor.GetLeveledActorBase().GetSex() == 1 DW_Milkleak_Spell.cast( akActor ) endif SPELL Property Hmilkspell Auto if Caster.GetFactionRank(HentaiP.HentaiLactatingFaction) > 0 Hmilkspell.cast( akActor ) variable akActor is undefined Thank you for your reply, but there is a bug report,
jcyui Posted April 26, 2021 Posted April 26, 2021 i dont know how you did that without error Now I think that a button of the mcm menu is also a contribution of modder's knowledge. Thanks modder
FourArmBoi7 Posted May 1, 2021 Posted May 1, 2021 I'm having a weird issue with the belly scaling that I'll just explain with a picture: This seems to have started after I installed Egg Factory, but the problem is still there even after I uninstalled it. I'm using the CBBE 3BBB body and have HDT-SMP and CBPC installed. The belly physics are still being applied but it's a lot stiffer than it should be, and obviously the shape is really messed up. Any idea what could be causing this? 1
bubbadogslaw Posted May 5, 2021 Posted May 5, 2021 Sorry if this is the wrong place to ask, but I was wondering if anyone could tell me why my follower stops accepting command to use ZAZ furniture/MME milk pump after playing a sexlab animation at the same time as me? I'm using Hentai Pregnancy and Extensible follower framework as well, all in Special Edition.
Froggy Posted May 10, 2021 Posted May 10, 2021 On 5/11/2018 at 11:20 AM, Cricgck said: Are you planing on making a flower girls patch? Seconded. I mean, yeah, you can get around it by using SexLab and debug force sex to cause pregnancy from that animation routine, but it's just not the same.
b8c0nator Posted May 10, 2021 Posted May 10, 2021 I'm doing something stupid with my settings but I can't figure it out. Using UUNP and ni override and bodymorph I set the max pregnancy belly in bodyslide for all clothing options and build morphs. Then maxed out morph values in the mod settings. The PC pregnancy works but doesn't hit that max, and all NPC with clothes have the pregnancy belly effect regardless of status. Let me know what other info is needed. I'm sure its a simple fix for something I don't understand.
CrackerJack88 Posted May 22, 2021 Posted May 22, 2021 Are their any Birth animations I could use with this mod? (Kneeling down and POP! here's your soulgem!) Just doesn't do it for me!
Zagrus the old Posted May 25, 2021 Posted May 25, 2021 (QUESTION) as i understand this mod is not compatible with Fertility mode, but in what sense, the breast and belly scaling? those aren't working with this mod, it is because fertility mode takes priority? or i'm missing a file or patch? do hentai pregnancy uses a different system of scaling, than fertility mode? 1
Ed86 Posted May 25, 2021 Author Posted May 25, 2021 1 hour ago, Zagrus the old said: the breast and belly scaling
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