HOW DID U GOT THE STATS TO 50?
Map2.rpy
label map2:
init python:
def limit_stats():
try:
if store.momnightcomfortlevel > 50:
store.momnightcomfortlevel = 50
if store.lizanightcomfortlevel > 50:
store.lizanightcomfortlevel = 50
if store.lucynightcomfortlevel > 50:
store.lucynightcomfortlevel = 50
if store.jennynightcomfortlevel > 50:
store.jennynightcomfortlevel = 50
if store.week > 10:
store.week = 10
if store.Momaffection > 50:
store.Momaffection = 50
if store.Lizaaffection > 50:
store.Lizaaffection = 50
if store.Lucyaffection > 50:
store.Lucyaffection = 50
if store.Jennyaffection > 50:
store.Jennyaffection = 50
if store.Momdomination > 50:
store.Momdomination = 50
if store.Lizadomination > 50:
store.Lizadomination = 50
if store.Lucydomination > 50:
store.Lucydomination = 50
if store.Jennydomination > 50:
store.Jennydomination = 50
if store.money > 900:
store.money = 900
except:
pass
config.python_callbacks.append(limit_stats)