-
Notifications
You must be signed in to change notification settings - Fork 1
UsernameGrabber ‐ Program help & explanation
I guess read the title to know what it talks about.
Note
This guide is using the latest beta version.
| Results | Explanation |
|---|---|
| Valid | Means it's valid at the time of the check. |
| Unknown | Means the Scratch API sent a bad request (banned user/bad username/etc.) |
| Taken | Means the username is already taken. |
In the code, there's some values that can be changed, like this one:
int username_length = 4;or this one:
int delay = 500; // in msI'm pretty sure you know what these mean, but if you don't know well, please learn English.
Note
This method only works for now in beta releases.
When you download UsernameGrabber-Beta, you get this file structure:
|--libs
| |--parson.c
| |--parson.h
|--config.json
|--usrnamegrabber.cxx
What is gonna interest us here is the config.json file, inside this file, you should find default values:
{"delay":450,"username_length":4}Note
The delay is in milliseconds.
That means you can change the options to whatever you want! (For the delay there's a limit)
Also make sure to select the "5 - Load from JSON option" or else it will load default config.
Note
For now, custom mode can only change the delay.
This method is simple, just select the "4 - Custom Mode" option and enter the delay in milliseconds.