How ? beacuse if i open the folder, they put me a block of notes that is imposible to read
seems like you're opening binary one `/game/options.rpy
c` (
c means compiled == unreadable for human), ... readable one is `/game/options.rpy`, open it with any text editor like SublimeText, Ctrl+F `config.developer = False`, change `False` to `True`, Ctrl+S, remove `/game/options.rpyc`
- change Rowan's all default stats to 10 by editing `/game/core/avatar.rpy` line 6 `def __init__(self, name, level=0):`, change `0` to `10`, Ctrl+S, remove `/game/core/avatar.rpy
c`
- set boost modifiers `/game/core/utils.rpy` ... `add_exp`, `change_treasury`, `change_morale`, `change_personal_gold` ... and other functions which accept `val` argument - change `+= val` to `+= abs(val) * 10`, Ctrl+S, remove `/game/core/utils.rpy
c`
etc, have fun && learn Python