79 lines
4.9 KiB
Markdown
79 lines
4.9 KiB
Markdown
# Baritone
|
|
[](https://travis-ci.com/cabaletta/baritone)
|
|
[](https://github.com/cabaletta/baritone/releases)
|
|
[](LICENSE)
|
|
[](https://www.codacy.com/app/leijurv/baritone?utm_source=github.com&utm_medium=referral&utm_content=cabaletta/baritone&utm_campaign=Badge_Grade)
|
|
[](http://hits.dwyl.com/cabaletta/baritone)
|
|
[](https://github.com/cabaletta/baritone/blob/master/CODE_OF_CONDUCT.md)
|
|
[](https://snyk.io/test/github/cabaletta/baritone?targetFile=build.gradle)
|
|
[](https://github.com/cabaletta/baritone/issues)
|
|
[](https://github.com/cabaletta/baritone/issues/)
|
|
[](https://github.com/cabaletta/baritone/issues?q=is%3Aissue+is%3Aclosed)
|
|
[](https://github.com/cabaletta/baritone/pulls/)
|
|

|
|

|
|

|
|

|
|
[](https://minecraft.gamepedia.com/1.12.2)
|
|
[](https://github.com/cabaletta/baritone/graphs/contributors/)
|
|
[](https://github.com/cabaletta/baritone/commit/)
|
|
[](https://impactdevelopment.github.io/)
|
|
[](https://wweclient.com/)
|
|
[](https://github.com/zeroeightysix/KAMI/)
|
|
[](https://futureclient.net/)
|
|
[](https://github.com/fr1kin/ForgeHax)
|
|
|
|
A Minecraft pathfinder bot.
|
|
|
|
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.
|
|
|
|
This project is an updated version of [MineBot](https://github.com/leijurv/MineBot/),
|
|
the original version of the bot for Minecraft 1.8.9, rebuilt for 1.12.2. Baritone focuses on reliability and particularly performance (it's over [30x faster](https://github.com/cabaletta/baritone/pull/180#issuecomment-423822928) than MineBot at calculating paths).
|
|
|
|
Have committed at least once a day for the last 7 months =D 🦀
|
|
|
|
1Leijurv3DWTrGAfmmiTphjhXLvQiHg7K2
|
|
|
|
# Getting Started
|
|
|
|
Here are some links to help to get started:
|
|
|
|
- [Features](FEATURES.md)
|
|
|
|
- [Installation & setup](SETUP.md)
|
|
|
|
- [API Javadocs](https://baritone.leijurv.com/)
|
|
|
|
- [Settings](https://baritone.leijurv.com/baritone/api/Settings.html#field.detail)
|
|
|
|
- [Baritone chat control usage](USAGE.md)
|
|
|
|
# API
|
|
|
|
The API is heavily documented, you can find the Javadocs for the latest release [here](https://baritone.leijurv.com/).
|
|
Please note that usage of anything located outside of the ``baritone.api`` package is not supported by the API release
|
|
jar.
|
|
|
|
Below is an example of basic usage for changing some settings, and then pathing to a X/Z goal.
|
|
|
|
```
|
|
BaritoneAPI.getSettings().allowSprint.value = true;
|
|
BaritoneAPI.getSettings().primaryTimeoutMS.value = 2000L;
|
|
|
|
BaritoneAPI.getProvider().getPrimaryBaritone().getCustomGoalProcess().setGoalAndPath(new GoalXZ(10000, 20000));
|
|
```
|
|
|
|
# FAQ
|
|
|
|
## Can I use Baritone as a library in my custom utility client?
|
|
|
|
That's what it's for, sure! (As long as usage is in compliance with the LGPL 3 License)
|
|
|
|
## How is it so fast?
|
|
|
|
Magic. (Hours of [leijurv](https://github.com/leijurv) enduring excruciating pain)
|
|
|
|
## Why is it called Baritone?
|
|
|
|
It's named for FitMC's deep sultry voice.
|