Thank you both for your answers.
I already have the cream in my inventory and I also noticed that it only works once a day.
But I'm confused, because in the guide the points needed for each level of "charm" are more than 5.
View attachment 837493
I may be reading it wrong or it was changed,
label calculate_weekly_looks_increase_effect():
if player.looks == 1 and player.looks_train_points >= 5:
elif player.looks == 2 and player.looks_train_points >=10:
elif player.looks == 3 and player.looks_train_points >= 15:
elif player.looks == 4 and player.looks_train_points >= 20:
label calculate_weekly_charm_training_effect():
if player.charm == 1 and player.charm_train_points >= 5:
elif player.charm == 2 and player.charm_train_points >= 10:
elif player.charm == 3 and player.charm_train_points >= 15:
elif player.charm == 4 and player.charm_train_points >= 20:
Points are reset each level to 0 so it gets progressively harder to reach the next level.
ex. level 1 needs 5 points, once level 1 the points reset and you need 10 new points to reach level 2.