Body Sizes (1 Viewer)

Gameboy739

Vivacious Visitor
Joined
Oct 14, 2012
Are there any mods that let you change the size of the female character's body past the cap size?
 

f93

Casual Client
Joined
Jul 8, 2013
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.

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.
 

sby

Content Creator
Coder
Joined
Sep 11, 2012
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)
 

Users who are viewing this thread

Top


Are you 18 or older?

This website requires you to be 18 years of age or older. Please verify your age to view the content, or click Exit to leave.