A simple to use Discord selfbot with a focus on speed (that isn't written in Python or Javascript!)
Using a selfbot is explicitly against Discord's TOS, by using NekoGo you acknowledge that this may lead to your account being permanently terminated. While this has never happened to anyone during testing, there will always be a risk that it could happen at any time.
NekoGo is currently in pre-release. This means there may be bugs, unexpected behaviour, and features that don't work or that get removed.
- Written in Golang so it is much faster than anything in Python/JavaScript (Which most selfbots are in)
- Thoroughly documented commands. Every command, subcommand, subsubcommand, etc has it's own help menu with examples
- Aliases galore. Too lazy to type the whole command name? Check help and there will likely be a much shorter alias
- Everything is easily configurable through chat so no need to mess with setting up config files. Setup your token the first run and you never have to worry about it again
- Interaction gifs like
kiss
,slap
,hug
,poke
, etc Iterpeters for several languages including JavaScript, Python, Brainfuck and moreImage generation using a mentioned user's profile pictureMention and keyword logging as well as message sniperInformation commands likeserverinfo
,userinfo
,roleinfo
,channelinfo
Search words withurbandictionary
,wikipedia
,dictionary
Steal emotes in chat and add them to your own server withemotestealer
Automatically switch your avatar, name, and tag (if you have Nitro) at a certain interval
A list of commands can be found in the Wiki. Please note this may not be updated, to get a list of all current commands, check the help menu in Discord.
- Prerequisites
- None!
- Steps
- Download the latest binaries from the Releases page
- Run the downladed file and input your token when prompted
- Profit?
- Notes
- On Linux you will need to run
chmod +x NekoGo-linux
to make the file executable
- On Linux you will need to run
If you don't want to use pm2
and prefer something like screen
, skip step i
and vii
- Prerequisites
- NodeJS (Used for pm2)
- Steps
- Install
pm2
, this will ensure that NekoGo keeps running after leaving SSH and (although it shouldn't happen) restart NekoGo if it crashes
npm i -g pm2
- Make a new directory and move into it
mkdir NekoGo && cd NekoGo
- Download the latest release (Replace the URL with the latest from Releases if I forget to update it)
wget URL -o NekoGo
- Allow the file to be run
chmod +x NekoGo
- Run it once to setup the config
./NekoGo
- After config has been set up and it's running. Press Control-C to stop it so we can run it in pm2 now
- Start a new
pm2
process
pm2 start NekoGo
- Profit?
- Install
- Notes
- To check logs use
pm2 logs NekoGo
- To check logs use
- Prerequisites
- Steps
- Clone the repository
git clone https://github.com/L3afMe/NekoGo.git
- Move into the repository
cd NekoGo
- Build the binarie(s)
- Linux (Cross-platform):
make build
- Linux (Host platform):
go build -o bin/NekoGo-linux *.go
- Windows (Host platform):
go build -o bin/NekoGo-windows.exe *.go
- The built file will be in
bin/
- Continue from running Prebuilt Binaries