Documentation 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.
This guide assumes you’ve already completed the installation steps.
Your first server join
Follow this guide to join a Discord server using a single token and invite code.Add an invite code
Add a Discord invite code to This will join the
input/invites.txt:discord.gg/api server.Configure for testing
For your first run, use these minimal settings in Why these settings?
input/config.json:threads: 1- Single thread for easier debuggingproxyless: true- No proxies needed for testingmax_joins: 1- Join only one server per tokendelay: 0- No delay between attemptssolve_captcha: false- Disable captcha solving for initial test
Understanding the output
Filly provides real-time logging with color-coded symbols:| Symbol | Color | Meaning |
|---|---|---|
[✓] | Green | Successful join |
[⨯] | Red | Failed attempt |
[△] | Yellow | Captcha detected |
[◈] | Cyan | Information message |
[▷] | Magenta | Event notification |
Console title statistics
The Windows console title updates in real-time:Final statistics
When execution completes, you’ll see a summary:Real-world example
Here’s a production configuration for joining 100 servers with 20 tokens:Expected behavior
Initialization
- Loads 20 unique tokens from
tokens.txt - Loads 5 invite codes from
invites.txt - Creates 10 concurrent threads
- Initializes proxy rotation with 3 proxies
Joining process
For each invite code:
- Assigns tokens to 10 threads
- Each thread attempts to join with its assigned token
- If captcha detected, calls RazorCap API for solution
- Waits 2 seconds before next attempt (delay)
- Tracks join count per token
Common scenarios
Handling captchas
Handling captchas
When a captcha is detected, you’ll see:The solver automatically:
- Extracts
captcha_rqdataandcaptcha_rqtokenfrom the response - Sends to configured captcha service API
- Polls for solution (up to 120 seconds)
- Retries join request with
x-captcha-keyheader
Each captcha solution consumes credits from your solver service. Monitor your usage.
Rate limiting
Rate limiting
If you hit Discord rate limits:Solutions:
- Increase
delayto 3-5 seconds - Reduce
threadsto 5 or fewer - Use proxies (
"proxyless": false) - Spread joins across more time
Invalid or locked tokens
Invalid or locked tokens
Invalid tokens are automatically removed:Locked accounts are also removed:These tokens are:
- Saved to
output/invalid.txtoroutput/locked.txt - Removed from
input/tokens.txt - Excluded from future join attempts
Tracking token join counts
Tracking token join counts
The When a token reaches The token is saved to
TokenManager class tracks joins per token:max_joins:filled_tokens.txt and skipped for remaining invites.Advanced configuration
Multiple captcha solvers
Filly supports 5 different captcha services:Proxy rotation
Proxies are randomly selected for each session:Thread optimization
Optimal thread count depends on:| Tokens | Invites | Recommended Threads |
|---|---|---|
| 1-10 | Any | 1-5 |
| 10-50 | Any | 5-10 |
| 50-100 | Any | 10-20 |
| 100+ | Any | 20-30 |
Next steps
Now that you’ve successfully joined your first server:- Optimize configuration - Tune threads, delays, and proxy settings for your use case
- Monitor output files - Regularly check
output/for results and issues - Manage tokens - Remove filled tokens and add fresh ones as needed
- Scale gradually - Start with small batches before large-scale operations
Need help?
Join the Discord community for support and updates