lee3310 Posted January 4, 2024 Posted January 4, 2024 (edited) 5 hours ago, vaultbait said: Oh, sorry, I haven't actually started on it yet. Still working on a partly-done update to MHK, but also got sidetracked by Elzee's excellent Tunnel Escape game now that it has an English language patch. ? Getting hungry. Just kidding, take your time, will try to whip up something temporary. Thanks for the link by the way, i like elzee work. Edited January 4, 2024 by lee3310
Lestat_Rhodes Posted January 23, 2024 Posted January 23, 2024 Dose anyone have a good mcm setting that they can share for it to be realistic and not to fast for like the slider groups and what not I don't know how exactly to set it up
vaultbait Posted January 23, 2024 Author Posted January 23, 2024 4 hours ago, Lestat_Rhodes said: Dose anyone have a good mcm setting that they can share for it to be realistic and not to fast for like the slider groups and what not I don't know how exactly to set it up There is an example MCM screenshot embedded in the mod description, also included in the screenshots for the mod on the file page. It's for Fusion Girl, but that's easy because FG has a single "BodyFat" slider you can use to simulate weight gain/loss fairly accurately. The default settings in the UC MCM are already tuned to be "realistic and not too fast" but still faster than real life because it would take years to go from emaciated to morbidly obese. Instead, normal gameplay where you're somewhat sedentary, eat a bit more often than you need to, consume less healthy/higher calorie foods, occasionally use drugs that lead to gaining and avoid those that would cause you to burn more fat, etc will have you going up by about 10% per game week, so you can go from skinny to fat in just a few game months.
lee3310 Posted January 27, 2024 Posted January 27, 2024 When testing the new TriMorph function, i added a lot a sugar bomb and selected them 10 at a time in pip boy menu but that will cause a huge stack-dump. Even after discarding any call made to "ModBodyFat" (empty state), LenARM script will still jam the VM and cause stack dump. Did you notice it too ? I guess you are not supposed to eat very fast 🙃.
vaultbait Posted January 27, 2024 Author Posted January 27, 2024 (edited) 3 hours ago, lee3310 said: When testing the new TriMorph function, i added a lot a sugar bomb and selected them 10 at a time in pip boy menu but that will cause a huge stack-dump. Even after discarding any call made to "ModBodyFat" (empty state), LenARM script will still jam the VM and cause stack dump. Did you notice it too ? I guess you are not supposed to eat very fast 🙃. How do you activate multiple consumables simultaneously from inventory? I've definitely seen script-based rapid fire equipping of potions cause stack dumps related to AN76's hunger/thirst processing (sleeping in brainwashing beds in Milking Human Kindness quickly equips 10 super mutant cum potions from BLTC and triggers a stack dump from AN76), but haven't noticed RMR doing the same. Edited January 27, 2024 by vaultbait
lee3310 Posted January 27, 2024 Posted January 27, 2024 (edited) 14 minutes ago, vaultbait said: How do you activate multiple consumables simultaneously from inventory? I've definitely seen script-based rapid fire equipping of potions cause stack dumps related to AN76's hunger/thirst processing, but haven't noticed it with RMR. By simultaneously i mean select items rapidly. Not sure if the function call is latent or not (I don't know if sup menu checks ignore pipboy) but i think if you equip a potion it will wait until the player exit menu to fire the morph update (if so then it will be indeed simultaneous). In my log, i can see the equip trace form other mods fire but not the morph update until i close pipboy and the time between each update is relatively high (couple of secs). I didn't check what RMR is doing exactly tbh. PS Could be too many scripts hooked to onitemEquipped event, didn't parse all the stack dump (too long) but RMR came up a lot. Edited January 27, 2024 by lee3310
vaultbait Posted January 28, 2024 Author Posted January 28, 2024 21 hours ago, lee3310 said: By simultaneously i mean select items rapidly. Not sure if the function call is latent or not (I don't know if sup menu checks ignore pipboy) but i think if you equip a potion it will wait until the player exit menu to fire the morph update (if so then it will be indeed simultaneous). In my log, i can see the equip trace form other mods fire but not the morph update until i close pipboy and the time between each update is relatively high (couple of secs). I didn't check what RMR is doing exactly tbh. PS Could be too many scripts hooked to onitemEquipped event, didn't parse all the stack dump (too long) but RMR came up a lot. Thanks, I'll see if I can recreate it when I get a chance. I do most of my eating "off the floor" (worldspace activation via mods) or with a mod-added "favorite" item that causes me to consume food from my inventory, so I can fairly quickly eat multiples without queuing them up from the inventory. That's probably why I haven't noticed. 1
deathmorph Posted January 29, 2024 Posted January 29, 2024 (edited) On 1/23/2024 at 10:39 AM, Lestat_Rhodes said: Dose anyone have a good mcm setting that they can share for it to be realistic and not to fast for like the slider groups and what not I don't know how exactly to set it up Since the default settings still cause changes far too quickly for me, I changed the following: I always play very slowly. For example, I'm level 30 and I just killed Kellog. That's why I'm fine with a slow morph. @vaultbait I tested the radar for junk food for a long time and am currently not using it. Due to the lack of control mechanisms for junk food, I resorted to eating everything within reach. And that's where the radar proved to be a hindrance. I'm looking forward to seeing how you further develop this function. Edited January 29, 2024 by deathmorph
lee3310 Posted January 29, 2024 Posted January 29, 2024 On 1/28/2024 at 8:07 PM, vaultbait said: Thanks, I'll see if I can recreate it when I get a chance. I do most of my eating "off the floor" (worldspace activation via mods) or with a mod-added "favorite" item that causes me to consume food from my inventory, so I can fairly quickly eat multiples without queuing them up from the inventory. That's probably why I haven't noticed. For now i will just take some precautions and not spam food items. But the solution is timer(). Replacing all the utility.waits (big cause of stackdumps) with a timer in order to alleviate the onEquip event load. Basically transfer the processing from a shared event (player.Onequip) to an individual one (OnTimer).
vaultbait Posted January 31, 2024 Author Posted January 31, 2024 On 1/29/2024 at 9:28 PM, lee3310 said: For now i will just take some precautions and not spam food items. But the solution is timer(). Replacing all the utility.waits (big cause of stackdumps) with a timer in order to alleviate the onEquip event load. Basically transfer the processing from a shared event (player.Onequip) to an individual one (OnTimer). Yeah, there are probably still a number of places I rely on waits where i could switch it to timers, but I thought I took care of any in routines that could end up running concurrently. I'll make a note to take another pass through looking for any I might have missed. If it's happening in RMR's scripts though, I don't know that I want to take on being the new maintainer for RMR on top of what I'm already working on. Maybe a new volunteer will come along to help with that. 1
lee3310 Posted January 31, 2024 Posted January 31, 2024 1 hour ago, vaultbait said: Yeah, there are probably still a number of places I rely on waits where i could switch it to timers, but I thought I took care of any in routines that could end up running concurrently. I'll make a note to take another pass through looking for any I might have missed. If it's happening in RMR's scripts though, I don't know that I want to take on being the new maintainer for RMR on top of what I'm already working on. Maybe a new volunteer will come along to help with that. Ok, if i change anything in RMR scripts (to avoid stackdumps) i will notify you and upload the fix.
vaultbait Posted January 31, 2024 Author Posted January 31, 2024 13 hours ago, lee3310 said: Ok, if i change anything in RMR scripts (to avoid stackdumps) i will notify you and upload the fix. Keep in mind that UC already "batches up" its calls to RMR, so eating a perfectly preserved pie shouldn't immediately result in calling any of RMR's scripts. The periodicity with which UC refreshes its RMR trigger is determined by an MCM option, defaulting to once every 30 in-game minutes. At least that's my recollection, but I'll also audit the scripts for any places I might be short-circuiting the batching.
Lestat_Rhodes Posted February 6, 2024 Posted February 6, 2024 i cant get morphs to work at all with this preg morphs work but i cant get this to it might be rad morphing but idk
Lestat_Rhodes Posted February 7, 2024 Posted February 7, 2024 (edited) On 1/29/2024 at 11:41 AM, deathmorph said: Since the default settings still cause changes far too quickly for me, I changed the following: I always play very slowly. For example, I'm level 30 and I just killed Kellog. That's why I'm fine with a slow morph. @vaultbait I tested the radar for junk food for a long time and am currently not using it. Due to the lack of control mechanisms for junk food, I resorted to eating everything within reach. And that's where the radar proved to be a hindrance. I'm looking forward to seeing how you further develop this function. and I meant like for the morphs with Radmorph Redux to work right as well I don't know how to set it all up right So with radmorph helper you have to have bodyslide open as well and you can see how its going to look in game didn't know that Edited February 7, 2024 by Lestat_Rhodes Figued it out
deathmorph Posted February 7, 2024 Posted February 7, 2024 (edited) 10 hours ago, Lestat_Rhodes said: So with radmorph helper you have to have bodyslide open as well and you can see how its going to look in game didn't know that Okay, then I misunderstood you. Here are my settings. I like more slim girls, so you may need to adjust the values to suit your taste. Spoiler Please be particularly careful that one trigger is set to "invert" and the other is not. Edited February 7, 2024 by deathmorph
vaultbait Posted February 7, 2024 Author Posted February 7, 2024 20 hours ago, Lestat_Rhodes said: i cant get morphs to work at all with this preg morphs work but i cant get this to it might be rad morphing but idk The description for this mod includes a screenshot of a simple RMR MCM setup for users of the Fusion Girl body. It's exactly how I configure my game. I don't use RMR Helper at all, that's mainly for situations where you want to interpolate between two different BodySlide presets. I just build my nude female body and outfits to the default Zero Sliders preset for Fusion Girl.
Lestat_Rhodes Posted February 7, 2024 Posted February 7, 2024 hey dose anyone know how to make a Form reference like when you are in outfit studio and load reference i play with a body and they don't have one and with this mod and rad morphing redux and the helper you need the reference xml and I also make armor mods a lot and so I was going to try to make it my self because they don't want to and I cant find it any wear so any help would be apricated pic below if you don't know what I mean
lee3310 Posted February 7, 2024 Posted February 7, 2024 26 minutes ago, Lestat_Rhodes said: hey dose anyone know how to make a Form reference like when you are in outfit studio and load reference i play with a body and they don't have one and with this mod and rad morphing redux and the helper you need the reference xml and I also make armor mods a lot and so I was going to try to make it my self because they don't want to and I cant find it any wear so any help would be apricated pic below if you don't know what I mean https://github.com/ousnius/BodySlide-and-Outfit-Studio/blob/dev/RefTemplates.xml There isn't much info on github but take a look at any RefTemplates xml and follow the same structure to make your own
Lestat_Rhodes Posted February 7, 2024 Posted February 7, 2024 5 minutes ago, lee3310 said: https://github.com/ousnius/BodySlide-and-Outfit-Studio/blob/dev/RefTemplates.xml There isn't much info on github but take a look at any RefTemplates xml and follow the same structure to make your own <!-- Reference templates are shortcuts to loading a slider set as a reference in Outfit Studio --> <RefTemplates> <Template sourcefile="SliderSets\A-Bod_BaseBody.osp" set="A-Bod_BaseBody" shape="MaleBody:0">A-Bod_BaseBody</Template> <Template sourcefile="SliderSets\A-Bod_BaseBody.osp" set="A-Bod_NeverNude" shape="MaleBody:0">A-Bod_NeverNude</Template> </RefTemplates> so this is what I got I tried copying the reftemplate from bodytalk but it still doesn't work
vaultbait Posted February 7, 2024 Author Posted February 7, 2024 Friendly reminder: The BodySlide and Outfit Studio forum is a better place to ask for help with basic usage of Outfit Studio, or perhaps the A-Body support topic if it's specifically about creating a reference template for that body (since other users of A-Body may also find such things useful, or might even have already created one). Similarly, the RMR Helper support topic is a better place to collect questions about RMR Helper.
Lestat_Rhodes Posted February 7, 2024 Posted February 7, 2024 ok I did it if anyone wants to use A-body and rad morphing or unhealthy cravings hear is the sliders for Rad Morphing Redux Helper just put this in your tools/bodyslide/SliderCategories folder and it should work https://www.nexusmods.com/fallout4/mods/66788?tab=description A-Body.xml
the.witcher Posted March 1, 2024 Posted March 1, 2024 (edited) On 1/23/2024 at 10:39 AM, Lestat_Rhodes said: Dose anyone have a good mcm setting that they can share for it to be realistic and not to fast for like the slider groups and what not I don't know how exactly to set it up Feel free to use mine. I aim for "realism" in the sense that you are really skinny below 20% body fat and start getting quite fat above 30%. The 20-30% looks good. Place the files here: ` Fallout 4\mods\Unhealthy Craving\MCM\Config\UnhealthyCraving ` and ` Fallout 4\mods\Rad Morphing Redux\MCM\Settings ` accordingly to your MO2 setup. Password for archive is ` secure ` without quotes and spaces. This also contains my bodyslide preset (remember tu build morphs in bodyslide studio) for fusion girl. This is more or less how it looks, please take note that the char is also pregnant here thus belly doesn't match what you'd have without the pregnancy. 0 fat Spoiler 30 fat Spoiler 100 fatty fat fuck Spoiler PRESETS UC RMR BS.zip Edited March 1, 2024 by the.witcher
the.witcher Posted March 2, 2024 Posted March 2, 2024 I'm often running into a problem I can't find a way to solve: Rad Morphing Redux stops working - values go blank like in the screenshot. Spoiler To fix it I need to "reload MCM settigns" in RMR and then "Soft restart the mod" in Unhealthy Craving and then it's ok. I can't nail down the reason though. I'm not adding any mods. I'm loading/saving hard saves without quicksaves. Load order doesn't seem to matter, as I had the mods load literally last. Anybody else encountered this or knows a fix? My mod order/load order.
vaultbait Posted March 3, 2024 Author Posted March 3, 2024 22 hours ago, the.witcher said: values go blank By that you mean the "Trigger" section is blank? I haven't observed that, but will keep a closer eye on it. Are you using any other RMR trigger mods besides UC?
the.witcher Posted March 4, 2024 Posted March 4, 2024 17 hours ago, vaultbait said: By that you mean the "Trigger" section is blank? I haven't observed that, but will keep a closer eye on it. Are you using any other RMR trigger mods besides UC? 1. Yes, the trigger section goes blank. I did a test just now - it is blank, however going to UC debug and going "full fat" works in game. 2. Not that I am aware off - I do not have any other triggers set whatsoever nor did I install anything else afair from RMR page that could do the morphs. I am using FPE + Wasteland Dairy and going through pregnancy though, and those can do morphs. Not sure if that would conflict. Spoiler
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