Sby's BreastExpansion has a pair of settings that let you adjust the min/max values allowed by the slider. By default those are: Code: minbodyscale=0.85 maxbodyscale=1.175 Note that the head doesn't scale, so sizes outside of this range may look really weird. If you're not interested in the breast/body expansion stuff you'll also want to change Code: breastexpansionactive=1 bodyexpansionactive=1 to Code: breastexpansionactive=0 bodyexpansionactive=0 There's not really a simpler way to do this at the moment. Spoiler You should already have BreastExpPlus_v2_4.swf and BreastExpPlus_v2_4settings.txt in your $INIT$ folder, and your Mods.txt file in that folder should include the line: Code: BreastExpPlus_v2_4.swf I'm adding this to the description so that people stop asking me about it, because the mod has absolutely nothing to do with me.
this is really a super easy mod to put together, here is something if someone wants to compile and release it: (for the alternate compiler) Code: package flash { public dynamic class Main extends flash.display.MovieClip { var orgminbodyscale:Number = 1; var orgmaxbodyscale:Number = 1; var main; public function initl(l){ orgminbodyscale = her.minBodyScale; orgmaxbodyscale = her.maxBodyScale; main = l; l.her.minBodyScale = 0.5; l.her.maxBodyScale = 3; l.g.inGameMenu.updateBodySlider(); l.registerUnloadFunction(dounload); l.unloadMod(); } function dounload() { main.her.minBodyScale = orgminbodyscale; main.her.maxBodyScale = orgmaxbodyscale; main.g.inGameMenu.updateBodySlider(); } } } (also would be a loader mod, if that wasn't implied already)