Daily Coin Calculator
Punch in the Bronze, Silver, and Gold coins you banked on each workday and the calculator does the running total for you. Every denomination value and per-day cap is reproduced from the in-game coin and day configuration, so the math matches what the MONEY achievement counter sees under the hood.
Coin denominations
CoinConfig.assetThe game recognizes three coin tiers. Bronze is the floor, Gold is worth five Bronze, and the per-day earning cap is enforced against the summed value, not the coin count. So forty Gold coins hit the ceiling far faster than forty Bronze.
Per-day coin calculator
Day configs verifiedEnter how many of each coin tier you picked up per workday. The calculator multiplies by the verified denomination values, caps the day at the per-day MaxMoney ceiling, and rolls everything into a running total that ignores the 999 HUD cap - exactly like the achievement counter does.
- Boxes
- 8
- Max coins
- 200
- Real time
- 550s
- Boxes
- 5
- Max coins
- 200
- Real time
- 480s
- Boxes
- 6
- Max coins
- 200
- Real time
- 380s
Running total
StatsConfig.assetThe summary below is the same number the MONEY achievement watches. The visible HUD stat freezes at 999, but the running total keeps climbing - which is why a player who banks every coin can still see the bar stuck at 998 right before the achievement fires.
The calculator writes the capped day totals into the same coin_plan storage key the MONEY Coin Tracker uses. Open the tracker and the same numbers appear in its Day 1 / Day 2 / Day 3 fields, so you can switch tools without re-entering anything.
Common questions
Config-backedWhy does the calculator cap each day at 200 coins?
Each of the three Day config assets sets MaxMoney to 200. That is the earning ceiling per workday regardless of how the denomination mix breaks down. The calculator enforces the same cap before rolling the day into the running total.
I typed in 40 Gold coins for Day 1 but only 200 registered - why?
Forty Gold coins are worth 200 in raw value, which is exactly the Day 1 ceiling, so the calculator shows the day at 200 over 200. Anything past the cap does not count toward the running total - the game stops the day at MaxMoney regardless of how many more coins you would have grabbed.
What is the difference between the running total here and the coin number on the HUD?
The HUD stat caps at 999, but the MONEY achievement watches a separate running total that keeps accumulating past the visible ceiling. The calculator tracks the running total, not the HUD value, so the number can climb past 999 even though the in-game bar looks frozen.
Does the calculator share data with the MONEY Coin Tracker?
Yes. The capped day totals and the bonus coin are written to the same "coin_plan" localStorage key the MONEY Coin Tracker reads. Open either page on the same browser and the numbers stay in sync.
Is my data sent anywhere?
No. Everything you type lives in your browser under localStorage. The page has no backend. You can export the breakdown as JSON and reload it on the same device later, or move it to another device manually.
