https://github.com/synacktraa/hacking-minecraft
https://github.com/synacktraa/hacking-minecraft
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/synacktraa/hacking-minecraft
- Owner: synacktraa
- Created: 2025-04-02T16:10:33.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-04-10T07:04:50.000Z (9 months ago)
- Last Synced: 2025-06-09T11:11:20.126Z (7 months ago)
- Language: JavaScript
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```
---