- Status
- Offline
- Joined
- Mar 3, 2026
- Messages
- 805
- Reaction score
- 457
Managing a farm of CoD accounts is a massive headache without automation.
Most public checkers are either broken pastes or outdated Node apps that stop working after an API tweak. This is a solid Golang-based source for a Discord monitor that tracks Activision accounts for shadowbans and status changes. If you're tired of manually checking the support page to see if your accounts are back in the loop, this is the play.
Technical Overview
The bot hits the Activision API directly using SSO cookies. It was rewritten in Go to handle concurrency and response times better than the average JS script. It includes a full suite of Discord slash commands to manage your account list and get real-time feedback on ban logs.
Key Features & Commands
The bot handles account management natively through Discord:
The Meat: Source Details
This isn't a carbon copy of the usual repositories. The architecture has been refined to minimize downtime and provide 24/7 monitoring.
Anti-Cheat Context
Ricochet's "Limited Matchmaking" system is aggressive. This bot won't stop you from getting shadowbanned by reports, but it lets you know the exact second an account is cleared without you having to risk logging in and potentially triggering a hardware flag. If you are building a private setup or selling accounts, integrating a checker like this is standard practice.
The source is available on GitHub for anyone who wants to fork it or improve the API implementation. If you decide to compile it yourself, be ready to troubleshoot a few commit errors as it is an active project.
Drop your thoughts on the Go implementation or if you have a better way to scrape the SSO cookies without manual extraction.
Most public checkers are either broken pastes or outdated Node apps that stop working after an API tweak. This is a solid Golang-based source for a Discord monitor that tracks Activision accounts for shadowbans and status changes. If you're tired of manually checking the support page to see if your accounts are back in the loop, this is the play.
Technical Overview
The bot hits the Activision API directly using SSO cookies. It was rewritten in Go to handle concurrency and response times better than the average JS script. It includes a full suite of Discord slash commands to manage your account list and get real-time feedback on ban logs.
Key Features & Commands
The bot handles account management natively through Discord:
- /addaccount <title> <sso_cookie> — Hooks a new account into the monitoring cycle.
- /accountlogs <account> — Dumps the last 5 shadowban status changes from the history.
- /accountage <account> — Checks when the account was first created.
- /updateaccount <account> <sso_cookie> — Refreshes the session when the SSO cookie expires.
The Meat: Source Details
This isn't a carbon copy of the usual repositories. The architecture has been refined to minimize downtime and provide 24/7 monitoring.
- Language: Golang.
- Auth: Requires SSO cookies from your Activision login.
- Notifications: Automated pings for status changes and a 24-hour heartbeat to confirm the account is still active.
- Architecture: Designed to run as a hosted Discord bot, but can be compiled and run locally.
- Auth: Requires SSO cookies from your Activision login.
- Notifications: Automated pings for status changes and a 24-hour heartbeat to confirm the account is still active.
- Architecture: Designed to run as a hosted Discord bot, but can be compiled and run locally.
Code:
/addaccount MainAcc 1234567890abcdef
Anti-Cheat Context
Ricochet's "Limited Matchmaking" system is aggressive. This bot won't stop you from getting shadowbanned by reports, but it lets you know the exact second an account is cleared without you having to risk logging in and potentially triggering a hardware flag. If you are building a private setup or selling accounts, integrating a checker like this is standard practice.
The source is available on GitHub for anyone who wants to fork it or improve the API implementation. If you decide to compile it yourself, be ready to troubleshoot a few commit errors as it is an active project.
Drop your thoughts on the Go implementation or if you have a better way to scrape the SSO cookies without manual extraction.