-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b591d82
Showing
8 changed files
with
2,372 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# DankMemer-Farmer | ||
|
||
A Discord self-bot that allows you to automate DankMemer tasks. It supports multiple accounts and can be easily configured using `config.json` and `.env` files. | ||
|
||
## Prerequisites | ||
|
||
- Node.js v12 or higher | ||
- discord.js-selfbot-v13 | ||
- Winston | ||
|
||
## Installation | ||
|
||
1. Clone the repository:<br> | ||
```sh | ||
git clone https://github.com/MoleTheDev/DankMemer-Farmer.git | ||
``` | ||
2. Install dependencies using:<br> | ||
```sh | ||
npm install discord.js-selfbot-v13 winston | ||
``` | ||
3. Configure using `config.json` file or using `.env` | ||
4. Start the bot:<br> | ||
```sh | ||
npm start | ||
``` | ||
|
||
## Configuration | ||
To configure the bot, you can either use the ```config.json``` file or define variables in a .env file. | ||
|
||
Examples of how would they look like: | ||
- `config.json`: | ||
```js | ||
{ | ||
"tokens": ["token1"], | ||
"prefixes": ["!"] | ||
} | ||
``` | ||
- `.env`: | ||
``` | ||
TOKENS=token1 | ||
PREFIXES=. | ||
``` | ||
|
||
## License | ||
|
||
MIT. See [LICENSE](LICENSE) for details. | ||
|
||
## Contributions | ||
|
||
We welcome contributions to this project. If you have an idea for a new feature or have found a bug, please open an issue or submit a pull request. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"tokens": [ | ||
"token1" | ||
], | ||
"prefixes": ["."] | ||
} |
Oops, something went wrong.