f96zonetrooper
Engaged Member
- Dec 21, 2018
- 2,975
- 2,876
- 350
Money-Cheat :
An easy way to add money inside the game is by editing the script for the memory game played from the PC in mc's bedroom :
For example lines 50-53 in "memorygames.rpy" :
Change this to :
Place the edited file in the game directory and ren'py will ignore the original file in archive.rpa ... and then you get 200 $ for every small memory game.
The original file "memorygames.rpy" (taken from v0.25 using unren) is attached. Use a text editor like Notepad++ to edit as explained above and then place the edited file in the game directory.
An easy way to add money inside the game is by editing the script for the memory game played from the PC in mc's bedroom :
For example lines 50-53 in "memorygames.rpy" :
Code:
label memory_game_win_normal:
$ totalMoney += 20
centered "You won 20 coins for a total of [totalMoney]."
jump memory_game_again
Code:
label memory_game_win_normal:
$ totalMoney += 200
centered "You won 200 coins for a total of [totalMoney]."
jump memory_game_again
The original file "memorygames.rpy" (taken from v0.25 using unren) is attached. Use a text editor like Notepad++ to edit as explained above and then place the edited file in the game directory.