We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I change the currency value and game speed? Even when it's difficult, it's still easy to win
The text was updated successfully, but these errors were encountered:
All of the following changes must be made to the game folder e.g.: jogar/js/dependencies.bundle.js
To change the value of the currency, simply edit the divisor that calculates and assigns the variable:
let numberMoney = parseFloat(t.coins / 4).toFixed(2);
The number 4 means 1/4= 0.25
If you want the coin to be worth 0.01, just change the divisor to 100 (1/100=0.01).
To edit the speed, simply search for:
switch(globalDifficulty)
Change all cases.
Sorry, something went wrong.
No branches or pull requests
How do I change the currency value and game speed? Even when it's difficult, it's still easy to win
The text was updated successfully, but these errors were encountered: