https://github.com/darkweak/minecraft-ddos-bot
This tool helps to load-test and connect many accounts on selected server.
https://github.com/darkweak/minecraft-ddos-bot
Last synced: 14 days ago
JSON representation
This tool helps to load-test and connect many accounts on selected server.
- Host: GitHub
- URL: https://github.com/darkweak/minecraft-ddos-bot
- Owner: darkweak
- Created: 2020-12-20T22:42:55.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-12-20T23:49:20.000Z (over 5 years ago)
- Last Synced: 2025-11-16T04:30:04.299Z (7 months ago)
- Language: JavaScript
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Minecraft ddos bot
## Configuration
Edit the .env to set environment variables to the script.
| Variable | type | default value | required |
|------------------------|-----------|-----------------|----------|
| `SERVER_URL` | `string` | `localhost` | false |
| `SERVER_PORT` | `string` | `25565` | false |
| `INSTANCES_PER_RUNNER` | `integer` | `1` | false |
## How to use it
### Docker way
Be sure you have already `docker` and `docker-compose` on your computer before launching these commands.
For a single instance of the bot, simply run
```shell script
docker-compose up -d node
```
For a multiple instance of the bot (eg. 10), simply run
```shell script
docker-compose up -d node && docker-compose scale node=10
```
### Local way
To run locally, just run
```shell script
node index.js
```