Sniper Config
This is the config the sniper will create when you first run it:
config.toml
MainToken = xxxxxxxxxxxxxxxxxxxxxxxxxxx
SuccessWebhook = https://discord.com/api/webhooks/
FailureWebhook = https://discord.com/api/webhooks/
WebhookUserId = userid
License =
scrape-invites = true
display-invites = false
Config Explanation
MainToken = xxxxxxxxxxxxxxxxxxxxxxxxxxx // The token that will receive nitro
SuccessWebhook = https://discord.com/api/webhooks/ // Discord Webhook integration: The sniper will trigger this webhook with an embed containing the discord gift claim data.
FailureWebhook = https://discord.com/api/webhooks/ // Discord Webhook integration: The sniper will trigger this webhook with an embed containing the discord gift miss data.
WebhookUserId = userid
License = // Here you put your license key which you get by doing /keys on our discord server.
scrape-invites = true // If set "true", the sniper will save any discord invite code received in a message to "invites.txt"
display-invites = false
Webhooks
Although you can make all the webhooks on one single channel, we recommend splitting into three channels (you can change the name of the channels as you like):
- fails - For the snipe fails (config->FailureWebhook)
- success - For the snipe successes (config->SuccessWebhook)
1. Go either to Server settings, or to the channel's settings
2. Go to Integrations->Webhooks
3. Press the "New Webhook" button. Make sure it's on the right channel. Feel free to change the icon/name.
4. Press the "Copy Webhook URL" button to copy the URL of the webhook, and put it in the right place in sniper's config.
Setup Sniper
Throughout this guide we will assume you are using Termius and FileZilla to access your VPS.
Virtual Private Server (VPS)
You should have 1 VPS for each Sniper you are running. To get good delays we recommend you split your alts in as many snipers as tokens, and have the vps located close to the discord servers (Attention: close to the discord SERVERS, not close to discord HQ).
We recommend these VPS Providers/Locations:
Provider | Location | Info |
---|---|---|
Zap-Hosting | Ashburn (USA) | Cheap VPS's; Not so good delays; Sometimes they have big downtime. |
Vultr (MOST RECOMMENDED) | Atlanta (USA) | Fine delays; Mostly good uptime; People abuse the use of Trials to get free vps's. use cupon (FLYTWOHUNDRED) for 200$ free |
Linode | Atlanta (USA) | Same as Vultr. Less common used in sniping communities, but still as good as vultr. |
If you are wondering what specifications you should get for your VPS, just know that RAM usage is the most important here. We recommend to get at least 2GB RAM memory, even if the sniper doesn't use much. The more alts you put on a VPS, the more RAM it'll need.
The sniper only runs on Linux OS, we recommend choosing the Latest Ubuntu when your provider asks what OS to install.
We highly suggest you enable password login on the vps, and preferably have root access. You will need to save this information about your vps:
- The IP address/Hostname of the VPS, to connect to it
- The access username, usually root
- The access password
- The access port, usually 22
Setup Sniper
Download the sniper directly from the API, and then give it the permissions to be executed:
wget http://91.200.220.42/download/sniper
chmod +x sniper
./sniper
Next, to keep the sniper running even when you disconnect from the VPS:
pkill screen
screen -S sniper
chmod +x sniper
./sniper
To detach from the screen session (leave the sniper running in the background), press CTRL+A followed by CTRL+D
To reattach to the screen session later, use:
screen -r sniper