baritone/README.md

77 lines
3.6 KiB
Markdown
Raw Normal View History

2018-09-03 16:25:44 +00:00
# Baritone
2018-09-17 03:23:08 +00:00
[![Build Status](https://travis-ci.com/cabaletta/baritone.svg?branch=master)](https://travis-ci.com/cabaletta/baritone)
2018-10-18 21:36:14 +00:00
[![Release](https://img.shields.io/github/release/cabaletta/baritone.svg)](https://github.com/cabaletta/baritone/releases)
2018-09-17 20:44:27 +00:00
[![License](https://img.shields.io/github/license/cabaletta/baritone.svg)](LICENSE)
2018-10-13 19:36:05 +00:00
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/a73d037823b64a5faf597a18d71e3400)](https://www.codacy.com/app/leijurv/baritone?utm_source=github.com&utm_medium=referral&utm_content=cabaletta/baritone&utm_campaign=Badge_Grade)
2018-10-27 16:25:53 +00:00
[![HitCount](http://hits.dwyl.com/cabaletta/baritone.svg)](http://hits.dwyl.com/cabaletta/baritone)
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/cabaletta/baritone/issues)
2018-11-01 03:37:18 +00:00
[![Minecraft](https://img.shields.io/badge/MC-1.12.2-green.svg)](https://minecraft.gamepedia.com/1.12.2)
2018-09-03 04:26:57 +00:00
2018-11-07 04:12:02 +00:00
A Minecraft pathfinder bot.
2018-08-26 15:45:02 +00:00
2018-10-27 03:04:12 +00:00
Baritone is the pathfinding system used in [Impact](https://impactdevelopment.github.io/) since 4.4. There's a [showcase video](https://www.youtube.com/watch?v=yI8hgW_m6dQ) made by @Adovin#3153 on Baritone's integration into Impact. [Here's](https://www.youtube.com/watch?v=StquF69-_wI) a video I made showing off what it can do.
2018-10-16 00:01:29 +00:00
2018-11-07 04:12:02 +00:00
This project is an updated version of [MineBot](https://github.com/leijurv/MineBot/),
the original version of the bot for Minecraft 1.8, rebuilt for 1.12.2. Baritone focuses on reliability and particularly performance (it's over [29x faster](https://github.com/cabaletta/baritone/pull/180#issuecomment-423822928) than MineBot at calculating paths).
2018-09-24 00:39:04 +00:00
Here are some links to help to get started:
2018-09-02 18:15:43 +00:00
2018-09-24 00:39:04 +00:00
- [Features](FEATURES.md)
2018-09-03 17:04:48 +00:00
2018-10-15 23:55:13 +00:00
- [Installation](INSTALL.md)
2018-09-24 00:39:04 +00:00
There's also some useful information down below
2018-09-17 21:33:14 +00:00
2018-08-26 15:45:02 +00:00
# Setup
2018-09-13 17:14:10 +00:00
2018-08-27 18:59:36 +00:00
## Command Line
2018-09-02 21:19:21 +00:00
On Mac OSX and Linux, use `./gradlew` instead of `gradlew`.
2018-09-06 04:31:36 +00:00
Running Baritone:
```
2018-11-02 23:23:57 +00:00
$ gradlew runClient
2018-09-06 04:31:36 +00:00
```
2018-11-02 23:23:57 +00:00
Building Baritone:
2018-08-27 18:59:36 +00:00
```
2018-11-02 23:23:57 +00:00
$ gradlew build
2018-08-27 18:59:36 +00:00
```
2018-08-27 19:12:19 +00:00
2018-11-10 04:21:58 +00:00
For example, to replace out Impact 4.4's Baritone build with a customized one, switch to the `impact4.4-compat` branch, build Baritone as above then copy `dist/baritone-api-$VERSION$.jar` into `minecraft/libraries/cabaletta/baritone-api/1.0.0/baritone-api-1.0.0.jar`, replacing the jar that was previously there. You also need to edit `minecraft/versions/1.12.2-Impact_4.4/1.12.2-Impact_4.4.json`, find the line `"name": "cabaletta:baritone-api:1.0.0"`, remove the comma from the end, and entirely remove the line that's immediately after (starts with `"url"`).
2018-11-02 23:23:57 +00:00
## IntelliJ's Gradle UI
- Open the project in IntelliJ as a Gradle project
2018-11-05 06:22:04 +00:00
- Run the Gradle tasks `setupDecompWorkspace` then `genIntellijRuns`
2018-11-02 23:23:57 +00:00
- Refresh the Gradle project (or, to be safe, just restart IntelliJ)
- Select the "Minecraft Client" launch config
- In `Edit Configurations...` you may need to select `baritone_launch` for `Use classpath of module:`.
2018-08-27 19:02:51 +00:00
# Chat control
[Defined Here](src/main/java/baritone/utils/ExampleBaritoneControl.java)
2018-08-27 19:02:51 +00:00
Quick start example: `thisway 1000` or `goal 70` to set the goal, `path` to actually start pathing. Also try `mine diamond_ore`. `cancel` to cancel.
# API example
```
2018-09-24 00:23:57 +00:00
BaritoneAPI.getSettings().allowSprint.value = true;
BaritoneAPI.getSettings().pathTimeoutMS.value = 2000L;
2018-08-27 19:02:51 +00:00
2018-11-19 01:32:16 +00:00
BaritoneAPI.getProvider().getPrimaryBaritone().getCustomGoalProcess().setGoalAndPath(new GoalXZ(10000, 20000));
2018-08-29 19:25:03 +00:00
```
2018-09-02 23:01:41 +00:00
# FAQ
## Can I use Baritone as a library in my hacked client?
2018-08-29 19:25:03 +00:00
2018-09-17 23:11:54 +00:00
Sure! (As long as usage is in compliance with the LGPL 3 License)
2018-08-29 19:25:03 +00:00
2018-09-02 23:01:41 +00:00
## How is it so fast?
2018-08-29 19:25:03 +00:00
2018-09-24 00:34:04 +00:00
Magic. (Hours of [Leijurv](https://github.com/leijurv) enduring excruciating pain)
## Why is it called Baritone?
2018-09-26 00:04:34 +00:00
It's named for FitMC's deep sultry voice.