This page documents all available configuration options for Filly Discord Token Filler. Configuration is stored inDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/Nuu-maan/Filly-Discord-Token-Filler/llms.txt
Use this file to discover all available pages before exploring further.
input/config.json.
Configuration File Location
The configuration file must be located at:JoinerConfig DataClass
The configuration is loaded into theJoinerConfig dataclass (index.py:31-38):
Top-Level Configuration
Number of concurrent threads to use for joining servers.
- Controls how many tokens can be processed simultaneously
- Limited by the number of available tokens (index.py:249)
- Higher values increase speed but may trigger rate limits
Whether to run without proxies.
- When
true: Runs without proxies (direct connections) - When
false: Loads proxies frominput/proxies.txt(index.py:84) - Proxy format supports session ID randomization (index.py:85-87)
Maximum number of servers each token should join.
- Limits how many invites each token will process
- Tokens that reach this limit are saved to
output/filled_tokens.txt(index.py:270-271) - Actual joins limited to available invites (index.py:248)
- Tracked per-token via
TokenManager.increment_joins()(index.py:267)
Delay in seconds between join attempts.
- Sleep duration after each join operation (index.py:220-221)
- Set to
0to disable delay - Helps avoid rate limiting
Captcha Configuration
Configuration for captcha solving services.The captcha object contains settings for automatic captcha detection and solving.
Enable or disable automatic captcha solving.
- When
true: Automatically detects and solves captchas (index.py:189) - When
false: Skip captcha solving, joins will fail if captcha is encountered - Captcha detection checks for
"captcha_sitekey"in response (index.py:189)
The captcha solving service to use.Supported services:
razorcap- RazorCap API (solver.py:55)hcoptcha- HCOptcha API (solver.py:127)csolver- CSolver API (solver.py:33, uses hardcoded API key)capmonster- CapMonster Cloud (solver.py:203)
API key for the selected captcha solving service.
- Required for all captcha services
- Used in solver.py:13 as
api_key - Different services require different API keys
Whether to solve captchas without proxies.
- When
true: Solves captchas directly without proxy (solver.py:22-23) - When
false: Uses proxies frominput/proxies.txtfor captcha solving (solver.py:18-20) - Independent from the top-level
proxylesssetting
Complete Example Configuration
Browser Configuration Variables
These variables are defined in index.py and used for browser fingerprinting:Chrome version used for user agent and sec-ch-ua headers.Defined in index.py:27:
Chrome user agent client hints header value.Defined in index.py:28:Value:
User-Agent string for HTTP requests.Defined in index.py:29:Value:
Related Configuration Files
Input Files
input/tokens.txt- Discord tokens to use (one per line)input/invites.txt- Discord invite codes (one per line)input/proxies.txt- HTTP proxies (required whenproxyless: false)
Output Files
output/joined.txt- Successfully joined tokens (index.py:147)output/invalid.txt- Invalid/unauthorized tokens (index.py:153)output/locked.txt- Locked tokens (index.py:160)output/captcha.txt- Tokens that encountered captcha (index.py:191)output/failed_token.txt- Failed due to token issues (index.py:167)output/failed_captcha.txt- Failed due to captcha solver issues (index.py:173)output/failed.txt- Other failures (index.py:178)output/filled_tokens.txt- Tokens that reached max_joins limit (index.py:270)
Notes
- Configuration is loaded using
json.loads()and unpacked intoJoinerConfigdataclass (index.py:243) - Missing required fields will cause the application to fail at startup
- Invalid JSON syntax will prevent the configuration from loading
- Thread count is automatically limited by available tokens (index.py:249)
- Max joins is automatically limited by available invites (index.py:248)