Automates bonus collection and crate purchases for RocketBotRoyale, using our Unofficial Python Client for Rocket Bot Royale Game API available at GitHub. It logs in with provided credentials or prompts for them, collects timed bonuses, checks coin balance, and optionally opens crates if sufficient coins are available.
Ensure you have Python 3 installed. You can install the required library using pip:
pip install rbrapi # RocketBotRoyale API client library
Run the script with Python, providing necessary arguments:
python main.py --email "your_email" --password "your_password" [--no-logging] [--auto-open-crates]
--email
: Email address for your RocketBotRoyale account.--password
: Password for your RocketBotRoyale account.--no-logging
: (Optional) Disable logging. By default, logging is enabled unless this flag is specified.--auto-open-crates
: (Optional) Automatically open crates if available and if coins are sufficient.
If you omit --email
or --password
, the script will prompt you to enter them interactively.
To run the script with logging enabled and auto-open crates:
python main.py --email "your_email" --password "your_password" --auto-open-crates
To run the script without logging and with auto-open crates:
python main.py --email "your_email" --password "your_password" --no-logging --auto-open-crates