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

https://github.com/synacktraa/hacking-minecraft


https://github.com/synacktraa/hacking-minecraft

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

> Make sure you have [node.js](https://nodejs.org/en/download) installed.

## Bots

### bot-follow-a-player

This bot will follow a (nearby) player with a given name.

Check help section

```
Usage: index.js --player [--interval ] [--range ] [--bot
]

Options:
--version Show version number [boolean]
-p, --player Name of the player to follow [string] [required]
-i, --interval Interval in ms to check for the player [number] [default: 500]
-r, --range Range in blocks to check for the player [number] [default: 3]
-b, --bot Name for the bot [string] [default: "bot"]
-h, --help Show help [boolean]
```

```bash
cd bot-follow-a-player
npm install
node index.js --player
```

---

### bot-protect-a-player-from-hostile

This bot will protect a (nearby) player with a given name from hostiles.

Check help section

```
Usage: index.js --player [--interval ] [--range ] [--bot
]

Options:
--version Show version number [boolean]
-p, --player Name of the player to follow [string] [required]
-i, --interval Interval in ms to check for the player [number] [default: 500]
-r, --range Range in blocks to check for the player [number] [default: 3]
-b, --bot Name for the bot [string] [default: "bot"]
-h, --help Show help [boolean]
```

```bash
cd bot-protect-a-player-from-hostile
npm install
node index.js --player
```

---