2018-09-03 09:25:44 -07:00
# Baritone
2018-09-16 20:23:08 -07:00
[![Build Status ](https://travis-ci.com/cabaletta/baritone.svg?branch=master )](https://travis-ci.com/cabaletta/baritone)
2018-10-18 14:36:14 -07:00
[![Release ](https://img.shields.io/github/release/cabaletta/baritone.svg )](https://github.com/cabaletta/baritone/releases)
2018-09-17 13:44:27 -07:00
[![License ](https://img.shields.io/github/license/cabaletta/baritone.svg )](LICENSE)
2018-10-13 12:36:05 -07: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 09:25:53 -07: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-10-31 20:37:18 -07:00
[![Minecraft ](https://img.shields.io/badge/MC-1.12.2-green.svg )](https://minecraft.gamepedia.com/1.12.2)
2018-09-02 23:26:57 -05:00
2018-11-06 20:12:02 -08:00
A Minecraft pathfinder bot.
2018-08-26 08:45:02 -07:00
2018-10-26 20:04:12 -07: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-15 17:01:29 -07:00
2018-11-06 20:12:02 -08: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-23 19:39:04 -05:00
Here are some links to help to get started:
2018-09-02 11:15:43 -07:00
2018-09-23 19:39:04 -05:00
- [Features ](FEATURES.md )
2018-09-03 10:04:48 -07:00
2018-10-15 16:55:13 -07:00
- [Installation ](INSTALL.md )
2018-09-23 19:39:04 -05:00
There's also some useful information down below
2018-09-17 14:33:14 -07:00
2018-08-26 08:45:02 -07:00
# Setup
2018-09-13 12:14:10 -05:00
2018-08-27 13:59:36 -05:00
## Command Line
2018-09-02 14:19:21 -07:00
On Mac OSX and Linux, use `./gradlew` instead of `gradlew` .
2018-09-05 21:31:36 -07:00
Running Baritone:
```
2018-11-02 16:23:57 -07:00
$ gradlew runClient
2018-09-05 21:31:36 -07:00
```
2018-11-02 16:23:57 -07:00
Building Baritone:
2018-08-27 13:59:36 -05:00
```
2018-11-02 16:23:57 -07:00
$ gradlew build
2018-08-27 13:59:36 -05:00
```
2018-08-27 12:12:19 -07:00
2018-11-30 23:06:16 -08:00
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 16:23:57 -07:00
## IntelliJ's Gradle UI
- Open the project in IntelliJ as a Gradle project
2018-11-04 22:22:04 -08:00
- Run the Gradle tasks `setupDecompWorkspace` then `genIntellijRuns`
2018-11-02 16:23:57 -07: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 12:02:51 -07:00
# Chat control
2018-09-23 19:39:37 -05:00
[Defined Here ](src/main/java/baritone/utils/ExampleBaritoneControl.java )
2018-08-27 12:02:51 -07: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-23 19:23:57 -05:00
BaritoneAPI.getSettings().allowSprint.value = true;
BaritoneAPI.getSettings().pathTimeoutMS.value = 2000L;
2018-08-27 12:02:51 -07:00
2018-11-18 17:32:16 -08:00
BaritoneAPI.getProvider().getPrimaryBaritone().getCustomGoalProcess().setGoalAndPath(new GoalXZ(10000, 20000));
2018-08-29 12:25:03 -07:00
```
2018-09-02 18:01:41 -05:00
# FAQ
2018-11-19 17:14:54 -08:00
## Can I use Baritone as a library in my custom utility client?
2018-08-29 12:25:03 -07:00
2018-09-17 16:11:54 -07:00
Sure! (As long as usage is in compliance with the LGPL 3 License)
2018-08-29 12:25:03 -07:00
2018-09-02 18:01:41 -05:00
## How is it so fast?
2018-08-29 12:25:03 -07:00
2018-09-23 19:34:04 -05:00
Magic. (Hours of [Leijurv ](https://github.com/leijurv ) enduring excruciating pain)
2018-09-15 08:14:57 -07:00
## Why is it called Baritone?
2018-09-25 19:04:34 -05:00
It's named for FitMC's deep sultry voice.