Code Serpent Posted March 10, 2016 Posted March 10, 2016 Simple idea; adventuresses can store small items inside themselves. In terms of game mechanics the items would be stored in an external inventory, so stolen items can be stored there and won't be taken if the adventuress is captured. Also the items would cause a belly bump depending on how many items were stored there, and the adventuress would move slower with these items inside her. I may be able to make this myself if someone can tell me the simplest code possible to change the belly node scale with NiOverride, and how to play a female masturbation SexLab animation. Edit: Thanks to 4onen for the code. I managed to whip up a beta of sorts in a few hours that works well enough to use. You have to add the spell "Acess Extra Pocket" via the console at the moment. You can only get in there when you are not in combat, and you're movement speed is slowed by default at a rate of 2% per 1 unit of weight stored. This can be changed by altering the "_E_WeightFactor" global, which also determines how large your belly becomes per unit of weight. The default value of it is "0.5". Note that you cannot store armor, clothing, or weapons besides daggers, for "immersion" and balancing reasons. If you don't want to be restricted, or you want to be more restricted, to what you shove up there you can remove, or add, the appropriate keywords from the "_E_ProhibitedKeywords" formlist with TES5edit. You do need SKSE, NetImmerse Override or an equivalent version of RaceMenu, and a skeleton with a "NPC Belly" node. Currently SexLab and SexLab Aroused are not implemented, but I might get around to it later. ExtraPocketsBeta.rar Edit 2: I made a few adjustments to the mod. I fixed the spell name typo so it's now called "Access Extra Pocket", you still need to add it via the console. I also added SexLab Aroused support, so your character gets aroused when items are taken in and out of there, this includes when items fall out of you when you try to shove weapons and armor in, this is done via mod events so you don't need the SexLab Aroused mod installed for this mod to work. Also I added Devious Devices support, so you cannot access your items if you are wearing anything with the chastity belt keyword. This is done via scripts not a hard dependency, so the Devious Devices mod is also not required. Sorry 4onen, but you'll need to recompile to remove the gender check. ExtraPockets 3-15-16.rar Edit 3: I've now added in Bodyslide RaceMenu Morph support. So now instead of using the belly skeleton node scaling, you can use the bodyslide sliders to control how full your body looks. Since this is done through NiOverride it should have the same compatability. You can also toggle it on and off by setting the global _E_UseBone to 1 or 0; 1 reverts to using the original skeleton scaling, and 0 uses the bodyslide morphing. For those that aren't familiar with Bodyslide morphing, you need either Racemenu 3.4.4+ or NiOverride 3.4.4+, you also need Bodyslide version 2.8+, and you need to install the Racemenu Morphs from the Bodyslide archive. You also need to rebuild the armors with Bodyslide, while also checking the "RaceMenu Morphs" next to the "Build" button. This is a fair bit of work, but I personally think it's worth it, since the Bodyslide Morphs look much better than the Skeleton Scaling, especially with low-poly meshes. ExtraPockets 5-9-16.rar For those still following this, I've uploaded a completed version, found here: http://www.loverslab.com/files/file/3272-extra-pocket/
4onen Posted March 10, 2016 Posted March 10, 2016 Simplest code possible to change belly node scale with NiOverride: ;This is a copy/paste of the lovely SetNodeScale function from XPMSElib. I copy/pasted it here to avoid any additional dependencies. ;(Actually, at this point it's hardly the same function, but credit where it's due) ; Sets a transformation with the given key in 3rd and 1st person skeleton to the given scale (Quicker, Recommended if not 3rd or 1st person dependent) Function SetNodeScale(Actor akActor, string nodeName, float value) bool isFemale = true ;If something goes really fucking wrong and it skips the if/elseif ladder, this assumes the most common case. Most people want females inflated, so assume female skeleton. If akActor.GetLeveledActorBase().GetSex()==0 isFemale=false ElseIf akActor.GetLeveledActorBase().GetSex()==1 isFemale=true Else return EndIf If value > 1.0 NiOverride.AddNodeTransformScale(akActor, false, isFemale, nodeName, inflater.FHU_MODKEY, value) NiOverride.AddNodeTransformScale(akActor, true, isFemale, nodeName, inflater.FHU_MODKEY, value) Else NiOverride.RemoveNodeTransformScale(akActor, false, isFemale, nodeName, inflater.FHU_MODKEY) NiOverride.RemoveNodeTransformScale(akActor, true, isFemale, nodeName, inflater.FHU_MODKEY) Endif NiOverride.UpdateNodeTransform(akActor, false, isFemale, nodeName) NiOverride.UpdateNodeTransform(akActor, true, isFemale, nodeName) EndFunction Love the idea. As for running a sexlab animation, you'll have to ask someone else. I only know how to hook running animations and pull data from them at specific event points.
Redoneter593 Posted March 11, 2016 Posted March 11, 2016 Sounds like a way to store and transport stolen gems, gold, and contraband without anyone suspecting a thing, except that the contraband has a chance of taking damage, eventually leaking and you gaining the effects as well as when you store too much of anything inside it may become noticeable that you suddenly have an unnatural change in belly or butt size, thus may cause guards to search you there thus causing the half the effects of rape to only you and if they don't find something that is stolen or illegal they will have bag with a bunch of gold for you at the jail and the guard put on suspension for a while (2-7 days) during which they will put on different clothes and have only a dagger if defending themselves (they will hand their normal stuff in for it at the jail), use a different AI and be in a nearby tavern drinking or some other activity. Them being drunk may cause them to harass you and as such more gold for compensation and eventually they will get sent on a suicide patrol if they have too many incidents in a week or two. Should be compatible with other belly node scaling stuff (aka pregnancy and cum inflation)) as well as Wear and Tear by SoberVentor as to impose penalties for having something stored for longer periods of time or opening/closing the storage too much and also prevent certain kinds of actions including sex if you have stuff other than cum inside. Might take awhile for all that, but that's what I think it should look like when finished.
Ekirts Ykcul Posted March 14, 2016 Posted March 14, 2016 HI there, i just tried your beta version. Nice idea, i hope you are willing to expand it. The spell works and the belly expands. I do not see an animation played. But maybe the animation not playing is a problem in my installation. Some ideas i had while playing. Maybe add arousal modifiers for stuff put in or out, or maybe like the devious device effects, stuff shifting or something. Thanks for your efford, keep up the good work.
4onen Posted March 15, 2016 Posted March 15, 2016 Amazing work! Took a rummage around inside the mod and made a recompiled version ignoring the gender check. Seriously, I doubt I could've pulled that off. Well done IronDusk33
4onen Posted March 18, 2016 Posted March 18, 2016 Recompiling it was no issue. In fact, I decided to make an MCM menu for the gender check because... I don't know why I decided to do that, but I did. Anyway, a version with an MCM menu: (I did test the gender checking, and it was letting my male character at a vagina he didn't have. However, unfortunately, I accidentally setup the MCM to default gender checking to false. As I have a paper due in a few hours, I don't have time to fix that.) Have at:ExtraPocketsBeta.7z And, yes, this is based on the latest version. I added a quest to the *.esp, a script to the Scripts folder, and I changed two lines in the existing script. (Notably, if(Player.GetActorBase().GetSex() == 0); to if((Player.GetActorBase().GetSex() == 0)&&(config.genderCheck)); )
Reokudo Posted March 18, 2016 Posted March 18, 2016 Gonna admit, I was expecting something being placed in the cleavage. Not... In the nethers. Color me surprised.
Terakhan Posted March 25, 2016 Posted March 25, 2016 Ok, after doing a test run on Solitude, I had 25 pounds/units of stolen jewels/jewelry, and the belly node swelled up to almost large enough to hide the rest of my character in. With some self-restraint, it is a really good mod.
Halleaon Posted March 28, 2016 Posted March 28, 2016 Sounds like a way to store and transport stolen gems, gold, and contraband without anyone suspecting a thing, except that the contraband has a chance of taking damage, eventually leaking and you gaining the effects as well as when you store too much of anything inside it may become noticeable that you suddenly have an unnatural change in belly or butt size, thus may cause guards to search you there thus causing the half the effects of rape to only you and if they don't find something that is stolen or illegal they will have bag with a bunch of gold for you at the jail and the guard put on suspension for a while (2-7 days) during which they will put on different clothes and have only a dagger if defending themselves (they will hand their normal stuff in for it at the jail), use a different AI and be in a nearby tavern drinking or some other activity. Them being drunk may cause them to harass you and as such more gold for compensation and eventually they will get sent on a suicide patrol if they have too many incidents in a week or two. Should be compatible with other belly node scaling stuff (aka pregnancy and cum inflation)) as well as Wear and Tear by SoberVentor as to impose penalties for having something stored for longer periods of time or opening/closing the storage too much and also prevent certain kinds of actions including sex if you have stuff other than cum inside. Might take awhile for all that, but that's what I think it should look like when finished. I love the idea of contraband like skooma and stolen potions breaking or leaking and affecting the player as well as the wear and tear idea. I support this. IronDusk33: Also, please limit the ability to shove books up there, I know you already mentioned not being able to put armor and weapons, i'm pretty sure you can't fit a book up your womb/ass either. *totally did that in my last playthrough and said wtf* love the mod otherwise right now!
Code Serpent Posted March 31, 2016 Author Posted March 31, 2016 Sounds like a way to store and transport stolen gems, gold, and contraband without anyone suspecting a thing, except that the contraband has a chance of taking damage, eventually leaking and you gaining the effects as well as when you store too much of anything inside it may become noticeable that you suddenly have an unnatural change in belly or butt size, thus may cause guards to search you there thus causing the half the effects of rape to only you and if they don't find something that is stolen or illegal they will have bag with a bunch of gold for you at the jail and the guard put on suspension for a while (2-7 days) during which they will put on different clothes and have only a dagger if defending themselves (they will hand their normal stuff in for it at the jail), use a different AI and be in a nearby tavern drinking or some other activity. Them being drunk may cause them to harass you and as such more gold for compensation and eventually they will get sent on a suicide patrol if they have too many incidents in a week or two. Should be compatible with other belly node scaling stuff (aka pregnancy and cum inflation)) as well as Wear and Tear by SoberVentor as to impose penalties for having something stored for longer periods of time or opening/closing the storage too much and also prevent certain kinds of actions including sex if you have stuff other than cum inside. Might take awhile for all that, but that's what I think it should look like when finished. I love the idea of contraband like skooma and stolen potions breaking or leaking and affecting the player as well as the wear and tear idea. I support this. IronDusk33: Also, please limit the ability to shove books up there, I know you already mentioned not being able to put armor and weapons, i'm pretty sure you can't fit a book up your womb/ass either. *totally did that in my last playthrough and said wtf* love the mod otherwise right now! You can simply add the "VendorItemBook" keyword to the prohibited items formlist yourself with TES5edit or the Creation Kit.
Halleaon Posted April 1, 2016 Posted April 1, 2016 Sounds like a way to store and transport stolen gems, gold, and contraband without anyone suspecting a thing, except that the contraband has a chance of taking damage, eventually leaking and you gaining the effects as well as when you store too much of anything inside it may become noticeable that you suddenly have an unnatural change in belly or butt size, thus may cause guards to search you there thus causing the half the effects of rape to only you and if they don't find something that is stolen or illegal they will have bag with a bunch of gold for you at the jail and the guard put on suspension for a while (2-7 days) during which they will put on different clothes and have only a dagger if defending themselves (they will hand their normal stuff in for it at the jail), use a different AI and be in a nearby tavern drinking or some other activity. Them being drunk may cause them to harass you and as such more gold for compensation and eventually they will get sent on a suicide patrol if they have too many incidents in a week or two. Should be compatible with other belly node scaling stuff (aka pregnancy and cum inflation)) as well as Wear and Tear by SoberVentor as to impose penalties for having something stored for longer periods of time or opening/closing the storage too much and also prevent certain kinds of actions including sex if you have stuff other than cum inside. Might take awhile for all that, but that's what I think it should look like when finished. I love the idea of contraband like skooma and stolen potions breaking or leaking and affecting the player as well as the wear and tear idea. I support this. IronDusk33: Also, please limit the ability to shove books up there, I know you already mentioned not being able to put armor and weapons, i'm pretty sure you can't fit a book up your womb/ass either. *totally did that in my last playthrough and said wtf* love the mod otherwise right now! You can simply add the "VendorItemBook" keyword to the prohibited items formlist yourself with TES5edit or the Creation Kit. I don't know the first thing about either of those *isn't a modder at all* but i am glad the option exists.
Halleaon Posted May 8, 2016 Posted May 8, 2016 btw, i love that this mod supports devious devices now, nothing quite as immersive as hiding all your restraint keys between your legs only to get locked up in a chastity belt and unable to access any of them.
Code Serpent Posted May 10, 2016 Author Posted May 10, 2016 I've now updated the mod so it supports Bodyslide Racemenu Morphs
missymaster Posted July 21, 2016 Posted July 21, 2016 when is a version with a fully configureable mcm coming also you might want to consider making you learn the spell fom a special npc
nightshad Posted July 22, 2016 Posted July 22, 2016 i too would like to see a mcm support. also would this lock out pregnancy and cum inflation cause your holding items Oo?
saviliana Posted July 25, 2016 Posted July 25, 2016 Would it be anykind of pregnancy mod support like beeing female? I would like to see if the Item store inside me just hurt the fetues or even myself through time if they are pointy(like large blades) or poisonous if I don't becareful. Maybe add the spell into a item as to open the passage to store item and let us buy/craft/found it in places would be more easier then using console to add the spell for now, I can't find it because my creation kit was broken, anyone who know the console code of the spell?
Code Serpent Posted October 4, 2016 Author Posted October 4, 2016 For those still following this, I've uploaded a completed version, found here: http://www.loverslab...2-extra-pocket/
Longsua412 Posted May 22, 2017 Posted May 22, 2017 Well, this mod is awsome but i wonder if we can store a adult or a kid inside....uhm maybe a rabbit
Recommended Posts
Archived
This topic is now archived and is closed to further replies.