Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pgbiel/discordcoolselfbot
Some cool selfbot made for reasons yet unknown by humanity.
https://github.com/pgbiel/discordcoolselfbot
discord-js discordjs selfbot utility
Last synced: 17 days ago
JSON representation
Some cool selfbot made for reasons yet unknown by humanity.
- Host: GitHub
- URL: https://github.com/pgbiel/discordcoolselfbot
- Owner: PgBiel
- Created: 2017-01-16T19:27:10.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-22T07:08:36.000Z (almost 8 years ago)
- Last Synced: 2025-01-03T07:07:24.557Z (23 days ago)
- Topics: discord-js, discordjs, selfbot, utility
- Language: JavaScript
- Size: 35.2 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# discordcoolselfbot
Some cool selfbot made for reasons yet unknown by humanity.## Installation
(Make sure you have at least Node 7 installed.)
1. Open Terminal or, in Windows, CMD.
2. Run `npm install PgBiel/discordcoolselfbot`.
3. After done, go to your user folder, open the folder named `node_modules`, and copy the folder named `discordcoolselfbot` to anywhere you like.
4. Go inside that folder and open the file named `selfiebot.js`.
5. Once opened, look for this line (334 in latest release):```js
process.chdir("Insert/Dir/Here");
```Replace `"insert/dir/here"` with the directory to the bot folder. Example: `"/Users/GuyCool/Documents/discordcoolselfbot"`.
Next, scroll down to the very bottom of the file.
![Bottom (last) line](http://i.imgur.com/YOB5zKb.png)
Replace `"insert token"` with your token, example: `"MHsodfsjofdsf.sdfosdfjos.fGODfogsfOGfg"`. To grab your token, first go in the Discord App (or the web version, but make sure you're in chrome) and press:
* Ctrl + Shift + I in case you are in Windows, or
* If Mac, press Command + Option + I.This will open developer tools.
Now do the following:![Applications tab then Local Storage](http://i.imgur.com/v6axzdA.png)
(If you do not see the Applications tab, click the two arrows on the top right (They look like this: `»`) and select Applications.)
Now copy your token (the bunch of random letters next to the token field) and paste them in the spot said.
Assuming the token is `a.b.c.d.e.f`, the line would look like this:
```js
me.login("a.b.c.d.e.f");
```Done! Now to start your bot, write this in Terminal/CMD **(DO NOT PRESS ENTER)**:
```
node --harmony
```
**then, Drag and Drop the `selfiebot.js` file into your Terminal/CMD window.** <- Important StepDoing that step will add the bot file's path to your terminal. Assuming the file path is `/Users/GuyCool/Documents/discordcoolselfbot/selfiebot.js`, it would then look like this:
```
node --harmony /Users/GuyCool/Documents/discordcoolselfbot/selfiebot.js
```
Now press enter. Done! Your selfbot has started on your account, if all steps have been followed correctly. ;)