About This File
Fill Her Up Baka Edition LE/SE
First off, I do not own the mod. I am not the original author. All I did is adding some motions for more immersion and gave some ingredients for lewd impressions.
Huge thanks to the original author for a wonderful mod and giving us great an opportunity to enjoy more in Skyrim.
The original mod post
- https://www.loverslab.com/files/file/1295-fill-her-up-cum-inflation/
What's changed?
- Added 4 sequenced animations and 1 simple motion
(4 sequenced animations for deflation motions and 1 simple motion for the expelfail motion)
- When she expel gooy from inside, there is a chance to put your tongue out.
- Also her expression will change as you expel it.
- Gooey deflation is now harder than the original one.
- Integration with Fertility and Beeing Female(A certain amount of cum in your womb(Almost 70% or above) will affect your pregnancy chance. This effect will be persistent unless you remove cum in your womb.)
[4개의 시퀀스 에니메이션과 하나의 일반 모션 추가, 4개의 시퀀스 모션은 정액배출 모션이고 나머지 하나는 정액배출실패 모션입니다.]
[정액을 배출 시 혀를 내뺄 확률이 있습니다.]
[배출하면서 표정이 바뀝니다.]
[원본 모드보다 빼내는 확률이 낮습니다.]
[Fertility, Beeing Female 모드와의 연계]
Future Updates
- Compatible patches for other sexlab mods
- No ideas for now. Please share your ideas.
Requirements
- SKSE
- SKY UI
- Sexlab
- Sexlab Aroused
- FNIS LE / SE or Nemesis
- NetImmerse Override AND/OR RaceMenu 3.0+ / Racemenu
- XPMSE LE / SE
- Bodyslide
- Sexlab Inflation Framework(Optional but highly recommended)
- OAR or DAR(Optional but highly recommended)
Compatibility
- Sexlab Inflation Framework LE / SE(highly recommended)
- SLSO(Fully compatible)
- Beeing Female
- Fertility
- Pregnancy Normalmap Swapper (For BHUNP users, you can get BHUNP normap textures here. https://subscribestar.adult/posts/118628)
How to Update
Please make sure to reset all the actors before you update the mod.
모든 액터 리셋한 다음에 업데이트 해주세요
Installation
1. Install Fill Her Up Baka Edition first
[even if you have other FHU mod, it doesn't matter. Just replace your version with this one. No clean save is required]
(option)2. Install Sexlab Inflation Framework. However do not install FHU patch for my version. I already did patch for SIF so just make sure my version is not overwritten
1. [FHU 바카 에디션을 깝니다. 기존에 쓰던 FHU 모드가 있다고 해도 상관없습니다. 그냥 이걸로 교체해주세요. 클린세이브 할 필요 없습니다.]
(옵션) 2. [이건 옵션입니다. Sexlab Inflation Framework를 설치하세요. 다만 FHU 패치 파일은 깔지 마세요. 절대 제 버전의 파일이 덮어씌워져서 먹히게끔 하지 말아주세요.]
아웃핏 스튜디오에서 자신이 쓰고 있는 바디 프로젝트를 열면 아래처럼 슬라이더 목록이 나오는데 아래 이름들이 여러분들이 활용할 수 있는 모프이름들입니다. 잘 모르실 경우 그냥 놔두거나 초기화시키시면 "PregnancyBelly" 슬라이더만을 활용할 겁니다.
For Modders
Big sorry to modders that havebeen used this reference. I made a huge mistake. I found out it didn't work very well when poolmask is more than 3. Now it should work from 1.95 version.
Please refer to the script "sr_inflateExternalEventController" for inflation, deflation, absorption events calling.
################Example###############
Inflater - An actor that will get pregnant / Inflation - True(Inflate), False(Deflate) / poolmask - 1(Vaginal), 2(Anal), 3(Vaginal + Anal), 4(Oral), 7(Vaginal + Anal + Oral) / amount - the cum amount you want to add or remove / time - literally required time for deflating. (Recommendation 0.2(instant) to 6.0)/ callback - Just type "" It will ignore additional event call
Deflation poolmask should be either 1(Vaginal) or 2(Anal) or 4(Oral). One time at a time.
Function SendFHUInflationEvent(form inflater, Bool Inflation, int poolmask, float amount, int time, string callback)
Int handle = ModEvent.Create("SR_InflateEvent")
ModEvent.PushForm(handle, inflater)
ModEvent.PushBool(handle, Inflation)
ModEvent.PushInt(handle, poolmask)
ModEvent.PushFloat(handle, amount)
ModEvent.PushInt(handle, time)
ModEvent.PushString(handle, callback)
ModEvent.Send(handle)
EndFunction
Injector - Who injects cum / Inflater - An actor that will get pregnant / Inflation - True(Inflate), False(Deflate) / poolmask - 1(Vaginal), 2(Anal), 3(Vaginal + Anal), 4(Oral), 7(Vaginal + Anal + Oral) / amount - the cum amount you want to add or remove / time - literally required time for deflating. (Recommendation 0.2(instant) to 6.0)/ callback - Just type "" It will ignore additional event call
Deflation poolmask should be either 1(Vaginal) or 2(Anal) or 4(Oral). One time at a time.
Function SendFHUInflationWithInjectorEvent(form injector, form inflater, Bool Inflation, int poolmask, float amount, int time, string callback)
Int handle = ModEvent.Create("SR_InflateEvent")
ModEvent.PushForm(handle, injector)
ModEvent.PushForm(handle, inflater)
ModEvent.PushBool(handle, Inflation)
ModEvent.PushInt(handle, poolmask)
ModEvent.PushFloat(handle, amount)
ModEvent.PushInt(handle, time)
ModEvent.PushString(handle, callback)
ModEvent.Send(handle)
EndFunction
Inflater - An actor from whom you want to remove cum / poolmask - 1(Vaginal), 2(Anal), 4(Oral) / amount - the cum amount you want to add or remove / time - literally required time for deflating.(Recommendation 0.2(instant) to 6.0) / callback - Just type "" It will ignore additional event call
Function SendFHUAbsorptionEvent(form inflater, int poolmask, float amount, int time, string callback)
Int handle = ModEvent.Create("SR_AbsorbEvent")
ModEvent.PushForm(handle, inflater)
ModEvent.PushInt(handle, poolmask)
ModEvent.PushFloat(handle, amount)
ModEvent.PushInt(handle, time)
ModEvent.PushString(handle, callback)
ModEvent.Send(handle)
EndFunction
Special Thanks
crajjjj - for 2.11V patch
Edited by factoryclose
What's New in Version 2.11V
Released
Change Logs(1.5V)
- You can now select armor slots that you don't want to undress while deflating.
- Added two 'anal expel cum' sequence motions.
- If 'Cum Variations' toggle is on, an actor expel different cum types according to races of actors in your last sexlab scene. It supports Chaurus and Spider races for now.
- You will get cum ingredients after expelling cum.
- You can now adjust expelling failure chance.
- Bug Fix: Absorption didn't work
- Bug Fix: When SLSO installed, the mod couldn't catch actors in sexlab scences
- Bug Fix: Once the mod caught actors in sexlab scenes and registered them in the list, the list was fixed and never changed.
Change Logs(1.51V)
- Bug Fix: I didn't compile the config script T _ T
Change Logs(1.52V)
- Bug Fix: Didn't catch sexlab actors which caused no cum variations.
- Bug Fix: Deflate Failure Chance didn't work.
Change Logs(1.53V)
- Bug Fix: Major script fix(Really fixed the issue with MCM!!)
Change Logs(1.551V)
- Added a new feature: Moaning sounds when deflating, failing to deflate.
When cum inflation is half full(50% of maximum capacity), the moaning will be tense.
You can replace sound files here. Sound \ fx \ FillHerUp
- Changed the script for the compatibility with Fertility V3 FIx
- Added scripts for calling events from external mods
Change Logs(1.552V)
- Bug Fix: It failed to detect Fertility, some races didn't equip the cum effect.
Change Logs(1.60V)
- Bug Fix: NPC's sperm was detected as Player's sperm and convey the information to external pregnancy mods
- Expand the race list by giving them a separate page.(each MCM menu page can handle only 128 items(Left 64 / RIght 64))
- Compatibility patch for newly added modded creature races such as Demoniac Creature
Change Logs(1.7V)
- You can now designate 3 additional body morphs when being inflated.
- You can see the list of current sperm kinds in Player womb on MCM menu
- Added SMP tongue. You can change the placements of the tongues through bodyslide.
- Depending on sperm types, different animation will play.
- Depending on sperm types, different expel effects will play.
- More various cum ingredients depending on sperm types.
Change Logs(1.71V)
- Added a toggle switch for cum ingredients
- Bug Fix: Can't equip the tongues. The tongue items didn't disappear.
- Bug Fix: Missing textures
Change Logs(1.71V Fix)
- Bug Fix: ashhopper eggs expel despite the fact you didn't have it with ashhoppers.
Change Logs(1.72V)
- Bug Fix: Gamepad script was not updated
- Optimized some of the codes: massive FPS drops when you deflate and are being inflated. There will be still a bit of fps drops even with the patch but it won't be severe anymore.
Change Logs(1.73V)
- Bug Fix: Crazy Inflation
- Added 'sperm data to external pregnancy mods' chance slider option
Change Logs(1.75V)
- Bug Fix: External calling for mod events didn't respond
Change Logs(1.76V)
- Bug Fix: Sending mod events(Pregnancy data) didn't properly work
Change Logs(1.90V)
- Now Oral Sex can make you inflated. Cum can be stored in the stomach. You can vomit and get rid of it anytime.
- New animation is added for cum deflation.
- You can set separate Morph Set for Oral cum inflation
Change Logs(1.91V)
- Hotfix: missing vomit animation
Change Logs(1.92V)
- Bug Fix: Vomit soared into the sky.
- Bug Fix: Many of MCM index descriptions didn't appear
- Now you are not allowed to use one body morph name multiple times.
Change Logs(1.93V)
- Added oral vomit sound
- Renewed all the vaginal, anal deflation sound and its system.
Change Logs(1.94V)
- Better optimization for inflation / deflation
- Minor bug fixes
Change Logs(1.95V)
- MorphSlider strings will be blocked when there is an actor(s) inflated.
- You can now disable SLIF integration function for each morph sliders even when you have SLIF installed. It turns out sending data to SLIF was causing serious fps drops when the actor is inflated/deflated. But please make sure to use SLIF when the morph slider is currently used elsewhere like "PregnancyBelly" which is commonly used.
- You can configure how much cum will be removed at every interval loop.
- Pregnancy Normalmap Swapper compatibility patch
- Added BHUNP Pregnancy Normalmap textures(Made it myself so it's kinda crude. ;p) and PSD file. Please download it from here. (https://subscribestar.adult/posts/118628)
Change Logs(1.95V Hotfix)
- Reading external event call was not functioning properly. I edited For Modders note so if you're a modder please read it.
Change Logs(1.96V)
- Bug fix: Facial expression didn't get recovered after the event was finished.
Change Logs(2.00V)
- Bug fix: Cum actors didn't appear even after deflation.
- Bug fix: NPC's injector index was not stored
- Overall script optimization revised.
- You can set body morph tick period in order to reduce script heavy load.
- New animation set added: expel fail animation for each spermtype, expel anus animation for each spermtype, etc.
- OAR support
- Expel spell added. Please obtain it via AIM
- Impregnation(pseudo) now available. Chaurus eggs hatch inside you. When the eggs hatch, larvae come out instead of eggs when you deflate. Also larvae could grow inside you which is expressed as cum amount increasing as time goes. Larvae would remove any other kind of cum.
Change Logs(2.01V)
- Bug Fix: Player T pose when the event fires
Change Logs(2.02V)
- Bug Fix: The script got stuck when you fail to expel cum and cancel the motion either deliberately or unintentionally.
- Added an option for Event Animation in MCM
- Game Pad menu was described as Inflation Framework in MCM.
Change Logs(2.03V Hotfix)
- Bug Fix: Oral Expel didn't work properly
- Bug Fix: No cum message didn't appear
- Bug Fix: Redundant Nioverride codes
Change Logs(2.10V)
- You can Export / Import MCM settings
- Now compatible with Sexlab P+ (Player got stuck when she deflates with Sexlab Moaning Sound on. Since the old sexlab sound api does not work with Sexlab P+, the mod uses internal FHU sound instead for now.)
Change Logs(2.11V Beta)
- Integration with Crajjjj's patch
Deflation & leakage reliability (the biggest theme)
-
Rewrote
StartLeakageand the deflation loop for consistency and to kill the deflate lag; deflate timer and idle-retry handling;DeflateFailMotionargument/sheath/strip fixes; a dedicatedResetThread. - Fixed leak overlays getting permanently stuck on actors — the burst release orphaned its drip overlay out of cleanup tracking, and several interrupt paths (failed expels, combat, tongue) did the same; added a tracking-independent orphan sweep that also restores displaced gear, runs on deflation start / full drain / MCM reset, and recovers old saves.
- Burst release now vents a pool that actually has cum (no more draining an empty hole past a plug), with a silent variant when auto-deflation is off (you keep control and just visibly leak).
- Silent/unanimated leaks now show the drip overlay + puddle instead of draining invisibly, and the drip lingers for the clean-delay.
- Tull creampie overlay fixes: clean-delay honored the slider (was game-seconds), anal overlay actually equips, overlay shown on burst-release end.
New features & integrations
- Digestion feature and a DHLP gate.
- "Allow Female/Futa Cum" toggle (off by default).
- Oral inflation routed to SLIF.
- Orgasm/SLSO event handling, including a legacy path for when only base SexLab is present.
Audio (most recent work)
-
AudioUtil integration: with the plugin installed, moans play through each actor's voice pack (gag-muffled when gagged); FHU's deflation/denial lines live in a bundled
FHU1voice slot with a dedicatedfhuvolume group. Fully falls back to SexLab voices / legacy Sound markers when AudioUtil isn't present.
MCM, maintenance & housekeeping
-
Large config/MCM overhaul: Actor Info page, morphing restrictions, localization/translation keys, persisted user settings, extra debug readouts;removed the gamepad toggle (detection asks the game directly).<- (Need more time to check. Leave gampad config for now) -
Refactored maintenance and actor-reset functions; MfgFix NG made a hard dependency; committed
.pexalongside source for change tracking.