Skip to content

UsernameGrabber ‐ Program help & explanation

Rindo (aka AmixemHello) edited this page Mar 15, 2025 · 3 revisions

UsernameGrabber

I guess read the title to know what it talks about.

Note

This guide is using the latest beta version.

Explanation

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.

How to change? (Values, etc.)

First method (directly change code)

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 ms

I'm pretty sure you know what these mean, but if you don't know well, please learn English.

Second method (change config.json)

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.

Third method (custom mode)

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.