SlamJammin

Member
Jan 1, 2018
106
143
When I visit moms room at night it says comfort level +1 but in her stats from the heart button it still says 0. Is this a bug or am I missing something?
 

delta67

Member
May 11, 2018
309
307
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)
 
  • Like
Reactions: flkflk and Jimmy365
3.10 star(s) 98 Votes