- Mar 20, 2022
- 922
- 2,859
I couldn't get any of those console commands to work. I get the following each time:There are actually 3 commands which modify a person's weight:
Code:the_person.weight = <weight in kilograms>
Code:the_person.body_type = "thin_body" the_person.body_type = "standard_body" the_person.body_type = "curvy_body"
Code:the_person.change_weight(amount=<weight in kg>, chance = 100)
Options 1 and 2 must be used together to get the desired weight to match the body type, otherwise the next time a girl's weight changes their body type will be reset to whichever range it falls under.
Option 3 is the primary method that will both update a girl's weight and body type. Keep in mind that values have a hard limit of what they can be.
You don't have permission to view the spoiler content. Log in or register now.
I unfortunately can't really explain why the weight doesn't update when changing the body type other than when the function is ran (Ren'Py priorities at work), but the safest option is to use the third command (the_person.change_weight) as this is the command used by the in-game serums which modify weight (in other words, the appropriate method).
Note: All weights seem to be calculated in SI and converted into Imperial units for anyone who has that option selected. Heights are calculated in Imperial (for some strange reason) and converted in SI if applicable settings are used. The spoiler below contains ALL weight ranges and their respective conversions from SI to Imperial for each height.
You don't have permission to view the spoiler content. Log in or register now.
File "<string>", line 1 : expected statement
I'm not familiar with Ren'Py coding.