- Open Developer Console
- Run
SugarCube.setup.decrypt(SugarCube.State.variables.mcCache)
- Profit
The reason the code can be found so easily (other than ttyrke using Caesar cipher -1) is because the game stores the code encrypted and decrypts it to check, a two way operation. The best way to check is the same way you'd check someone's password:
- Hash the input
- Check if the hashed input is the same as your hash
- If so then input is correct
This way is a one-way operation as you can't get the code from the hash.