Hi there! You are currently browsing as a guest. Why not create an account? Then you get less ads, can thank creators, post feedback, keep a list of your favourites, and more!

Set Fat Fit

SCREENSHOTS
8,230 Downloads 94 Thanks  Thanks 49 Favourited 42,482 Views
Uploaded: 14th Feb 2016 at 2:55 AM
Updated: 26th Feb 2016 at 9:37 PM
Purpose
This allows you to attempt to set the fat or fit level of a sim or all sims from the cheat console. It also provides for displaying the fat and/or fit values.

Use
All commands are entered using the cheat console in live mode.

Examples
This attempts to set the current sim's fat to 50%:
Code:
set_fat 50


This attempts to set John Doe's fat to 0%:
Code:
set_fat 0 John Doe


This attempts to set all sim's fat to 25%:
Code:
set_fat 25 all


This doesn't attempt to change anything, but instead provides help for the command:
Code:
set_fat


Attempting to set the fit value works the same way except instead of using "set_fat" use "set_fit".

The functions will tell you the value they are attempting to set for the sim, not the percent you specify. The percent specified is used to calculate the values. Values range from -75 to 75.

This displays the current sim's fat:
Code:
show_fat


This displays the fat of John Doe:
Code:
show_fat john doe


This displays the fat of all sims:
Code:
show_fat all


Showing the fit values works the same except instead of using "show_fat" use "show_fit".

This displays both the fat and fit of the current sim:
Code:
show_fat_fit


This displays both the fat and fit of John Doe:
Code:
show_fat_fit john doe


This displays the fat values of all sims followed by the fit values of all sims:
Code:
show_fat_fit all


Note
The game is often not responsive to these fat or fit changes, which is why I'm saying "attempt" above. Sometimes it freely works for any value for a given sim. Other times it doesn't respond even for the same sim that it was being responsive to before. Trying to set fat or fit values for all sims will only work for the few sims that the game is currently responsive for. I've found that often if trying to set a sim's value to something fails repeatedly that trying to set their value to something else and then trying the desired value afterwards is more likely to succeed. I haven't seen it succeed at changing values for sims that are not currently viewable by camming to them; so that may not be possible. Success or failure is determined by comparing the sim's new value to what it was attempted to be set to. This mod will let you know if the attempt was successful or not. Attempting to set the sim's value to the value they already have will be flagged as successful regardless of whether or not the game was being responsive to the change.


Install
See the "Install Instructions" tab for how to install script mods and assure they are enabled.

Game Version
This mod was tested using Sims 4 version 1.15.55.

Credits
  • Thanks to the MTS site for hosting mods and for their information on how to write mods.
  • Thanks to scumbumbo for providing the code to cause the change in fat or fit to happen right away.

Changes
14 Feb 2016
  • Added code to cause the changes to happen right away, thanks to scumbumbo.
26 Feb 2016
  • Added show_fat, show_fit and show_fat_fit
  • Removed the statement about changes possibly taking some time from the usage statements of set_fat and set_fit since that no longer applies.
  • Specifying too many arguments to set_fat or set_fit will now display the usage statement.