An open API service indexing awesome lists of open source software.

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.

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
```