Skip to content

Commit

Permalink
i hate appolino
Browse files Browse the repository at this point in the history
  • Loading branch information
moleium committed Jan 4, 2023
0 parents commit b591d82
Show file tree
Hide file tree
Showing 8 changed files with 2,372 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
50 changes: 50 additions & 0 deletions README.md
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.
6 changes: 6 additions & 0 deletions config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"tokens": [
"token1"
],
"prefixes": ["."]
}
Loading

0 comments on commit b591d82

Please sign in to comment.