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.
Output Directory
All output files are saved to theoutput/ directory. The tool creates this directory automatically if it doesn’t exist.
File Writing Mechanism
Output files are written using the_append_to_file method (from index.py:134-136):
Output Files Reference
joined.txt
Purpose: Contains tokens that successfully joined the server Triggered by: HTTP 200 response from Discord API Source code:index.py:145-149
invalid.txt
Purpose: Stores tokens that are invalid or unauthorized Triggered by: HTTP 401 (Unauthorized) response Source code:index.py:151-156
input/tokens.txt to prevent reuse.
locked.txt
Purpose: Contains tokens that are locked or restricted by Discord Triggered by: HTTP 403 (Forbidden) response Source code:index.py:158-163
input/tokens.txt.
captcha.txt
Purpose: Logs all tokens that encountered a captcha challenge Triggered by: Response containing “captcha_sitekey” when captcha solving is enabled Source code:index.py:189-192
failed_captcha.txt
Purpose: Stores tokens where captcha solving failed Triggered by: Response containing “captcha_key” error after solver attempt Source code:index.py:171-175
failed.txt
Purpose: General failure file for tokens that failed for other reasons Triggered by: Any error not covered by the specific categories above Source code:index.py:177-179
- Network errors
- Unexpected API responses
- Server-side issues
- Unknown error messages
filled_tokens.txt
Purpose: Contains tokens that have reached the maximum number of joins configured inconfig.json
Triggered by: Token join count >= max_joins setting
Source code: index.py:269-272
File Relationship Diagram
Token Removal Behavior
Only invalid.txt and locked.txt tokens are automatically removed frominput/tokens.txt:
What if a file already exists from a previous run?
What if a file already exists from a previous run?
The tool uses append mode (“a”), so new results are added to the end of existing files. If you want fresh results, manually delete files in the
output/ directory before running.Can I use these output files as input?
Can I use these output files as input?
Yes! For example, you can copy
joined.txt to input/tokens.txt to run another batch of joins with only successful tokens. The format is identical.Why is my token in both captcha.txt and joined.txt?
Why is my token in both captcha.txt and joined.txt?
This is normal.
captcha.txt logs when a captcha is encountered, but if the solver succeeds, the token still joins successfully and gets written to joined.txt as well.What's the difference between failed.txt and failed_captcha.txt?
What's the difference between failed.txt and failed_captcha.txt?
failed_captcha.txt: Captcha was encountered but the solver provided an invalid solutionfailed.txt: Generic failures like network errors, rate limits, or unexpected API responses