Python automation script for a RollerCoin tap and upgrade workflow with balance checks, task claims, wheel spins, daily reward attempts, energy recharge, miner upgrade heuristics, and local activity logging.
This public candidate is prepared as a safe showcase version of the original working project. The private multi-account deployment folders were collapsed into a single reusable codebase, while live bearer tokens, per-account runtime JSON, and account-specific logs were excluded.
rollercoin is a supporting-showcase repo centered on one reusable all-in-one bot entry point that handles the common balance, reward, tapping, and miner-purchase cycle.
The public repo keeps the automation logic and local configuration model while excluding the original per-account runtime folders from the private deployment.
- one canonical codebase extracted from a multi-account private deployment
- bearer token via env var or local token file
- task, wheel, reward, tap, and miner-market flows in one script
- reserve-aware auto-buy logic driven by local config
- local JSON logging for operational traceability
- Python 3.10+
- requests
- colorama
bot_allinone_v2.py- main automation scriptconfig.example.json- example tuning values for reserve logic and cycle timingtoken.txt.example- example local token file placeholder.env.example- optional environment-based token usagedocs/CONFIG.md- config notesdocs/QUICKSTART.md- copy-pasteable local bootstrap steps
The public repo intentionally excludes:
- real
token.txt activity_log.jsonpotential_actions.jsonconfig.json- the original
acc1..acc4private deployment folders
cp token.txt.example token.txt
python3 bot_allinone_v2.pyexport ROLLERCOIN_BEARER_TOKEN="replace-me"
python3 bot_allinone_v2.pycp config.example.json config.jsonA typical cycle looks like this:
- load auth token
- fetch user and balance data
- try daily reward claim
- recharge energy and collect taps
- inspect and claim tasks
- spin the wheel if balance allows
- evaluate miner purchases or upgrades based on payback heuristics
- write local activity snapshots
- sleep until the next cycle
docs/QUICKSTART.mddocs/CONFIG.md
- This repo is a public-safe showcase of the core bot logic.
- Real tokens, account snapshots, and original multi-account folders are intentionally excluded.
- Purchase behavior still depends on local config and live in-game economics.
- Never commit real bearer tokens.
- Never commit per-account runtime snapshots.
- If you run multiple accounts, keep separate working directories instead of reusing one runtime folder.
Shared for educational and automation-architecture reference. Use it responsibly and according to the target platform's rules and your own risk tolerance.