There are only two cheat codes from what I understand:
Allswellthatendswell - main cheat
3thousand - one-time use 3000 moneys
Here's the code that activates the cheats:
```
if blackAndDecker1 == "Allswellthatendswell":
"Input Correct, who would you like to change?"
jump cheatcodecorrect
elif blackAndDecker1 == "3thousand" and threethousandcheck == 0:
$ gold += 3000
$ threethousandcheck = 1
```
this is in script.rpy
If you want to use the 3000 gold cheat more than once, just delete this line "$ threethousandcheck = 1" and save the file
It should look like this
```
if blackAndDecker1 == "Allswellthatendswell":
"Input Correct, who would you like to change?"
jump cheatcodecorrect
elif blackAndDecker1 == "3thousand" and threethousandcheck == 0:
$ gold += 3000
```
That line of code was the thing that activated after using the 3thousand cheat, so if you delete it the game won't be able to tell if you have used the cheat already.
You can also just change the amount the cheat gives you by changing the value in this line: "$ gold += 3000"
Allswellthatendswell - main cheat
3thousand - one-time use 3000 moneys
Here's the code that activates the cheats:
```
if blackAndDecker1 == "Allswellthatendswell":
"Input Correct, who would you like to change?"
jump cheatcodecorrect
elif blackAndDecker1 == "3thousand" and threethousandcheck == 0:
$ gold += 3000
$ threethousandcheck = 1
```
this is in script.rpy
If you want to use the 3000 gold cheat more than once, just delete this line "$ threethousandcheck = 1" and save the file
It should look like this
```
if blackAndDecker1 == "Allswellthatendswell":
"Input Correct, who would you like to change?"
jump cheatcodecorrect
elif blackAndDecker1 == "3thousand" and threethousandcheck == 0:
$ gold += 3000
```
That line of code was the thing that activated after using the 3thousand cheat, so if you delete it the game won't be able to tell if you have used the cheat already.
You can also just change the amount the cheat gives you by changing the value in this line: "$ gold += 3000"