Automation script for Discord activities with gameplay helpers for:
- Repeated action clicking
- 3x3 triplet matching game flow
- Arrow sequence game flow
- Target clicking game flow
The script is designed to run directly from Discord DevTools Console.
- Automatic interaction with supported game activities
- Looping gameplay with restart/wait handling for cooldown states
- Continue-button handling when rounds end
- Runtime controls (start, stop, status, unload)
- Compatibility aliases for command convenience
Use this file:
Use WIN+R to open the Windows Run dialog and open the settings folder for your Discord build:
- Discord:
%APPDATA%\Discord\ - Discord PTB (Public Test Build):
%APPDATA%\DiscordPTB\ - Discord Canary:
%APPDATA%\discordcanary\
Then:
- Open
settings.jsonin that folder. - It helps to enable file extensions in Windows Explorer.
- Use a proper text editor (for example, Notepad++).
- Add this key:
"DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": trueExample before:
{
"BACKGROUND_COLOR": "#202225",
"IS_MAXIMIZED": false,
"IS_MINIMIZED": false,
"WINDOW_BOUNDS": {
"x": 288,
"y": 51,
"width": 1591,
"height": 919
},
"OPEN_ON_STARTUP": false
}Example after:
{
"BACKGROUND_COLOR": "#202225",
"IS_MAXIMIZED": false,
"IS_MINIMIZED": false,
"WINDOW_BOUNDS": {
"x": 288,
"y": 51,
"width": 1591,
"height": 919
},
"OPEN_ON_STARTUP": false,
"DANGEROUS_ENABLE_DEVTOOLS_ONLY_ENABLE_IF_YOU_KNOW_WHAT_YOURE_DOING": true
}Important: the comma after "OPEN_ON_STARTUP": false is required before adding the new key.
- Open Discord and enter the game screen.
- Open DevTools Console.
- Copy the content of script.js.
- Paste it into Console and press Enter.
- All modules start automatically.
- window.discordGameBots.startAll()
- window.discordGameBots.stopAll()
- window.discordGameBots.status()
- window.discordGameBots.unload()
- window.discordGameBots.adventure.start()
- window.discordGameBots.triplet.start()
- window.discordGameBots.arrow.start()
- window.discordGameBots.target.start()
- window.adventureClicker
- window.tripletGridBot
- window.arrowSequenceBot
- window.targetShooterBot
This script is for educational purposes only. Use at your own risk. Automation may violate Discord Terms of Service.
For questions or suggestions, contact me on Telegram: @mudachyo
This project is licensed under MIT. See LICENSE.
