Advertisement
Guest User

Sims 4 Script

a guest
Dec 18th, 2014
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.51 KB | None | 0 0
  1. import services
  2. import sims4.commands
  3.  
  4. @sims4.commands.Command('getSimFat', command_type=sims4.commands.CommandType.Live)
  5. def d1(_connection=None):
  6.     client = services.client_manager().get_first_client()
  7.     output = sims4.commands.CheatOutput(_connection)
  8.     output('Debuggery!')
  9.     if client is not None:
  10.         active_sim = client.active_sim
  11.         if active_sim is not None:
  12.             output = sims4.commands.CheatOutput(_connection)
  13.             output('Selected Sim\'s Fat: ' + active_sim.sim_info.fat)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement