-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbaritone-docs.html
3662 lines (3662 loc) · 415 KB
/
baritone-docs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_201) on Sat Aug 29 00:00:20 PDT 2020 -->
<title>Index (baritone 1.2.14 API)</title>
<meta name="date" content="2020-08-29">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Index (baritone 1.2.14 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="index.html?index-all.html" target="_top">Frames</a></li>
<li><a href="index-all.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="#I:A">A</a> <a href="#I:B">B</a> <a href="#I:C">C</a> <a href="#I:D">D</a> <a href="#I:E">E</a> <a href="#I:F">F</a> <a href="#I:G">G</a> <a href="#I:H">H</a> <a href="#I:I">I</a> <a href="#I:J">J</a> <a href="#I:L">L</a> <a href="#I:M">M</a> <a href="#I:N">N</a> <a href="#I:O">O</a> <a href="#I:P">P</a> <a href="#I:Q">Q</a> <a href="#I:R">R</a> <a href="#I:S">S</a> <a href="#I:T">T</a> <a href="#I:U">U</a> <a href="#I:V">V</a> <a href="#I:W">W</a> <a href="#I:X">X</a> <a href="#I:Y">Y</a> <a href="#I:Z">Z</a> <a name="I:A">
<!-- -->
</a>
<h2 class="title">A</h2>
<dl>
<dt><span class="memberNameLink"><a href="baritone/api/selection/ISelection.html#aabb--">aabb()</a></span> - Method in interface baritone.api.selection.<a href="baritone/api/selection/ISelection.html" title="interface in baritone.api.selection">ISelection</a></dt>
<dd> </dd>
<dt><a href="baritone/api/event/listener/AbstractGameEventListener.html" title="interface in baritone.api.event.listener"><span class="typeNameLink">AbstractGameEventListener</span></a> - Interface in <a href="baritone/api/event/listener/package-summary.html">baritone.api.event.listener</a></dt>
<dd>
<div class="block">An implementation of <a href="baritone/api/event/listener/IGameEventListener.html" title="interface in baritone.api.event.listener"><code>IGameEventListener</code></a> that has all methods
overridden with empty bodies, allowing inheritors of this class to choose
which events they would like to listen in on.</div>
</dd>
<dt><a href="baritone/api/schematic/AbstractSchematic.html" title="class in baritone.api.schematic"><span class="typeNameLink">AbstractSchematic</span></a> - Class in <a href="baritone/api/schematic/package-summary.html">baritone.api.schematic</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/schematic/AbstractSchematic.html#AbstractSchematic--">AbstractSchematic()</a></span> - Constructor for class baritone.api.schematic.<a href="baritone/api/schematic/AbstractSchematic.html" title="class in baritone.api.schematic">AbstractSchematic</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/schematic/AbstractSchematic.html#AbstractSchematic-int-int-int-">AbstractSchematic(int, int, int)</a></span> - Constructor for class baritone.api.schematic.<a href="baritone/api/schematic/AbstractSchematic.html" title="class in baritone.api.schematic">AbstractSchematic</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#acceptableThrowawayItems">acceptableThrowawayItems</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Blocks that Baritone is allowed to place (as throwaway, for sneak bridging, pillaring, etc.)</div>
</dd>
<dt><a href="baritone/api/pathing/movement/ActionCosts.html" title="interface in baritone.api.pathing.movement"><span class="typeNameLink">ActionCosts</span></a> - Interface in <a href="baritone/api/pathing/movement/package-summary.html">baritone.api.pathing.movement</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/Rotation.html#add-baritone.api.utils.Rotation-">add(Rotation)</a></span> - Method in class baritone.api.utils.<a href="baritone/api/utils/Rotation.html" title="class in baritone.api.utils">Rotation</a></dt>
<dd>
<div class="block">Adds the yaw/pitch of the specified rotations to this
rotation's yaw/pitch, and returns the result.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/TabCompleteHelper.html#addCommands-baritone.api.command.manager.ICommandManager-">addCommands(ICommandManager)</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers">TabCompleteHelper</a></dt>
<dd>
<div class="block">Appends every command in the specified <a href="baritone/api/command/manager/ICommandManager.html" title="interface in baritone.api.command.manager"><code>ICommandManager</code></a> to this <a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers"><code>TabCompleteHelper</code></a></div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/TabCompleteHelper.html#addModifiedSettings--">addModifiedSettings()</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers">TabCompleteHelper</a></dt>
<dd>
<div class="block">Appends every modified setting in the <a href="baritone/api/Settings.html" title="class in baritone.api"><code>Settings</code></a> to this <a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers"><code>TabCompleteHelper</code></a></div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/selection/ISelectionManager.html#addSelection-baritone.api.selection.ISelection-">addSelection(ISelection)</a></span> - Method in interface baritone.api.selection.<a href="baritone/api/selection/ISelectionManager.html" title="interface in baritone.api.selection">ISelectionManager</a></dt>
<dd>
<div class="block">Adds a new selection.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/selection/ISelectionManager.html#addSelection-baritone.api.utils.BetterBlockPos-baritone.api.utils.BetterBlockPos-">addSelection(BetterBlockPos, BetterBlockPos)</a></span> - Method in interface baritone.api.selection.<a href="baritone/api/selection/ISelectionManager.html" title="interface in baritone.api.selection">ISelectionManager</a></dt>
<dd>
<div class="block">Adds a new <a href="baritone/api/selection/ISelection.html" title="interface in baritone.api.selection"><code>ISelection</code></a> constructed from the given block positions.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/TabCompleteHelper.html#addSettings--">addSettings()</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers">TabCompleteHelper</a></dt>
<dd>
<div class="block">Appends every setting in the <a href="baritone/api/Settings.html" title="class in baritone.api"><code>Settings</code></a> to this <a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers"><code>TabCompleteHelper</code></a></div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/TabCompleteHelper.html#addToggleableSettings--">addToggleableSettings()</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers">TabCompleteHelper</a></dt>
<dd>
<div class="block">Appends every <code>Boolean</code> setting in the <a href="baritone/api/Settings.html" title="class in baritone.api"><code>Settings</code></a> to this <a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers"><code>TabCompleteHelper</code></a></div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/cache/IWaypointCollection.html#addWaypoint-baritone.api.cache.IWaypoint-">addWaypoint(IWaypoint)</a></span> - Method in interface baritone.api.cache.<a href="baritone/api/cache/IWaypointCollection.html" title="interface in baritone.api.cache">IWaypointCollection</a></dt>
<dd>
<div class="block">Adds a waypoint to this collection</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowBreak">allowBreak</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Allow Baritone to break blocks</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowDiagonalAscend">allowDiagonalAscend</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Allow diagonal ascending</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowDiagonalDescend">allowDiagonalDescend</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Allow descending diagonally</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowDownward">allowDownward</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Allow mining the block directly beneath its feet</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowInventory">allowInventory</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Allow Baritone to move items in your inventory to your hotbar</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowJumpAt256">allowJumpAt256</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">If true, parkour is allowed to make jumps when standing on blocks at the maximum height, so player feet is y=256</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowOvershootDiagonalDescend">allowOvershootDiagonalDescend</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Is it okay to sprint through a descend followed by a diagonal?
The player overshoots the landing, but not enough to fall off.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowParkour">allowParkour</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">You know what it is</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowParkourAscend">allowParkourAscend</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">This should be monetized it's so good</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowParkourPlace">allowParkourPlace</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Actually pretty reliable.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowPlace">allowPlace</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Allow Baritone to place blocks</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowSprint">allowSprint</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Allow Baritone to sprint</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowVines">allowVines</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Enables some more advanced vine features.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowWalkOnBottomSlab">allowWalkOnBottomSlab</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Slab behavior is complicated, disable this for higher path reliability.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allowWaterBucketFall">allowWaterBucketFall</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Allow Baritone to fall arbitrary distances and place a water bucket beneath it.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#allSettings">allSettings</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">A list of all settings</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#antiCheatCompatibility">antiCheatCompatibility</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Will cause some minor behavioral differences to ensure that Baritone works on anticheats.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/TabCompleteHelper.html#append-java.util.stream.Stream-">append(Stream<String>)</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers">TabCompleteHelper</a></dt>
<dd>
<div class="block">Appends the specified stream to this <a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers"><code>TabCompleteHelper</code></a> and returns it for chaining</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/TabCompleteHelper.html#append-java.lang.String...-">append(String...)</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers">TabCompleteHelper</a></dt>
<dd>
<div class="block">Appends the specified strings to this <a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers"><code>TabCompleteHelper</code></a> and returns it for chaining</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/TabCompleteHelper.html#append-java.lang.Class-">append(Class<? extends Enum<?>>)</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers">TabCompleteHelper</a></dt>
<dd>
<div class="block">Appends all values of the specified enum to this <a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers"><code>TabCompleteHelper</code></a> and returns it for chaining</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/datatypes/IDatatypePost.html#apply-baritone.api.command.datatypes.IDatatypeContext-O-">apply(IDatatypeContext, O)</a></span> - Method in interface baritone.api.command.datatypes.<a href="baritone/api/command/datatypes/IDatatypePost.html" title="interface in baritone.api.command.datatypes">IDatatypePost</a></dt>
<dd>
<div class="block">Takes the expected input and transforms it based on the value held by <code>original</code>.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/datatypes/IDatatypePostFunction.html#apply-O-">apply(O)</a></span> - Method in interface baritone.api.command.datatypes.<a href="baritone/api/command/datatypes/IDatatypePostFunction.html" title="interface in baritone.api.command.datatypes">IDatatypePostFunction</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/datatypes/RelativeBlockPos.html#apply-baritone.api.command.datatypes.IDatatypeContext-baritone.api.utils.BetterBlockPos-">apply(IDatatypeContext, BetterBlockPos)</a></span> - Method in enum baritone.api.command.datatypes.<a href="baritone/api/command/datatypes/RelativeBlockPos.html" title="enum in baritone.api.command.datatypes">RelativeBlockPos</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/datatypes/RelativeCoordinate.html#apply-baritone.api.command.datatypes.IDatatypeContext-java.lang.Double-">apply(IDatatypeContext, Double)</a></span> - Method in enum baritone.api.command.datatypes.<a href="baritone/api/command/datatypes/RelativeCoordinate.html" title="enum in baritone.api.command.datatypes">RelativeCoordinate</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/datatypes/RelativeFile.html#apply-baritone.api.command.datatypes.IDatatypeContext-java.io.File-">apply(IDatatypeContext, File)</a></span> - Method in enum baritone.api.command.datatypes.<a href="baritone/api/command/datatypes/RelativeFile.html" title="enum in baritone.api.command.datatypes">RelativeFile</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/datatypes/RelativeGoal.html#apply-baritone.api.command.datatypes.IDatatypeContext-baritone.api.utils.BetterBlockPos-">apply(IDatatypeContext, BetterBlockPos)</a></span> - Method in enum baritone.api.command.datatypes.<a href="baritone/api/command/datatypes/RelativeGoal.html" title="enum in baritone.api.command.datatypes">RelativeGoal</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/datatypes/RelativeGoalBlock.html#apply-baritone.api.command.datatypes.IDatatypeContext-baritone.api.utils.BetterBlockPos-">apply(IDatatypeContext, BetterBlockPos)</a></span> - Method in enum baritone.api.command.datatypes.<a href="baritone/api/command/datatypes/RelativeGoalBlock.html" title="enum in baritone.api.command.datatypes">RelativeGoalBlock</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/datatypes/RelativeGoalXZ.html#apply-baritone.api.command.datatypes.IDatatypeContext-baritone.api.utils.BetterBlockPos-">apply(IDatatypeContext, BetterBlockPos)</a></span> - Method in enum baritone.api.command.datatypes.<a href="baritone/api/command/datatypes/RelativeGoalXZ.html" title="enum in baritone.api.command.datatypes">RelativeGoalXZ</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/datatypes/RelativeGoalYLevel.html#apply-baritone.api.command.datatypes.IDatatypeContext-baritone.api.utils.BetterBlockPos-">apply(IDatatypeContext, BetterBlockPos)</a></span> - Method in enum baritone.api.command.datatypes.<a href="baritone/api/command/datatypes/RelativeGoalYLevel.html" title="enum in baritone.api.command.datatypes">RelativeGoalYLevel</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IExploreProcess.html#applyJsonFilter-java.nio.file.Path-boolean-">applyJsonFilter(Path, boolean)</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IExploreProcess.html" title="interface in baritone.api.process">IExploreProcess</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandInvalidArgumentException.html#arg">arg</a></span> - Variable in exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandInvalidArgumentException.html" title="class in baritone.api.command.exception">CommandInvalidArgumentException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#assumeExternalAutoTool">assumeExternalAutoTool</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Disable baritone's auto-tool at runtime, but still assume that another mod will provide auto tool functionality</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#assumeSafeWalk">assumeSafeWalk</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Assume safe walk functionality; don't sneak on a backplace traverse.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#assumeStep">assumeStep</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Assume step functionality; don't jump on an Ascend.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#assumeWalkOnLava">assumeWalkOnLava</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">If you have Fire Resistance and Jesus then I guess you could turn this on lol</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#assumeWalkOnWater">assumeWalkOnWater</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Allow Baritone to assume it can walk on still water just like any other block.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#avoidance">avoidance</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Toggle the following 4 settings</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#avoidUpdatingFallingBlocks">avoidUpdatingFallingBlocks</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">If this setting is true, Baritone will never break a block that is adjacent to an unsupported falling block.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#axisHeight">axisHeight</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The "axis" command (aka GoalAxis) will go to a axis, or diagonal axis, at this Y level.</div>
</dd>
</dl>
<a name="I:B">
<!-- -->
</a>
<h2 class="title">B</h2>
<dl>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#backfill">backfill</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Fill in blocks behind you</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#backtrackCostFavoringCoefficient">backtrackCostFavoringCoefficient</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Set to 1.0 to effectively disable this feature</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/Command.html#baritone">baritone</a></span> - Variable in class baritone.api.command.<a href="baritone/api/command/Command.html" title="class in baritone.api.command">Command</a></dt>
<dd> </dd>
<dt><a href="baritone/api/package-summary.html">baritone.api</a> - package baritone.api</dt>
<dd> </dd>
<dt><a href="baritone/api/behavior/package-summary.html">baritone.api.behavior</a> - package baritone.api.behavior</dt>
<dd> </dd>
<dt><a href="baritone/api/cache/package-summary.html">baritone.api.cache</a> - package baritone.api.cache</dt>
<dd> </dd>
<dt><a href="baritone/api/command/package-summary.html">baritone.api.command</a> - package baritone.api.command</dt>
<dd> </dd>
<dt><a href="baritone/api/command/argparser/package-summary.html">baritone.api.command.argparser</a> - package baritone.api.command.argparser</dt>
<dd> </dd>
<dt><a href="baritone/api/command/argument/package-summary.html">baritone.api.command.argument</a> - package baritone.api.command.argument</dt>
<dd> </dd>
<dt><a href="baritone/api/command/datatypes/package-summary.html">baritone.api.command.datatypes</a> - package baritone.api.command.datatypes</dt>
<dd> </dd>
<dt><a href="baritone/api/command/exception/package-summary.html">baritone.api.command.exception</a> - package baritone.api.command.exception</dt>
<dd> </dd>
<dt><a href="baritone/api/command/helpers/package-summary.html">baritone.api.command.helpers</a> - package baritone.api.command.helpers</dt>
<dd> </dd>
<dt><a href="baritone/api/command/manager/package-summary.html">baritone.api.command.manager</a> - package baritone.api.command.manager</dt>
<dd> </dd>
<dt><a href="baritone/api/command/registry/package-summary.html">baritone.api.command.registry</a> - package baritone.api.command.registry</dt>
<dd> </dd>
<dt><a href="baritone/api/event/events/package-summary.html">baritone.api.event.events</a> - package baritone.api.event.events</dt>
<dd> </dd>
<dt><a href="baritone/api/event/events/type/package-summary.html">baritone.api.event.events.type</a> - package baritone.api.event.events.type</dt>
<dd> </dd>
<dt><a href="baritone/api/event/listener/package-summary.html">baritone.api.event.listener</a> - package baritone.api.event.listener</dt>
<dd> </dd>
<dt><a href="baritone/api/pathing/calc/package-summary.html">baritone.api.pathing.calc</a> - package baritone.api.pathing.calc</dt>
<dd> </dd>
<dt><a href="baritone/api/pathing/goals/package-summary.html">baritone.api.pathing.goals</a> - package baritone.api.pathing.goals</dt>
<dd> </dd>
<dt><a href="baritone/api/pathing/movement/package-summary.html">baritone.api.pathing.movement</a> - package baritone.api.pathing.movement</dt>
<dd> </dd>
<dt><a href="baritone/api/pathing/path/package-summary.html">baritone.api.pathing.path</a> - package baritone.api.pathing.path</dt>
<dd> </dd>
<dt><a href="baritone/api/process/package-summary.html">baritone.api.process</a> - package baritone.api.process</dt>
<dd> </dd>
<dt><a href="baritone/api/schematic/package-summary.html">baritone.api.schematic</a> - package baritone.api.schematic</dt>
<dd> </dd>
<dt><a href="baritone/api/schematic/format/package-summary.html">baritone.api.schematic.format</a> - package baritone.api.schematic.format</dt>
<dd> </dd>
<dt><a href="baritone/api/selection/package-summary.html">baritone.api.selection</a> - package baritone.api.selection</dt>
<dd> </dd>
<dt><a href="baritone/api/utils/package-summary.html">baritone.api.utils</a> - package baritone.api.utils</dt>
<dd> </dd>
<dt><a href="baritone/api/utils/accessor/package-summary.html">baritone.api.utils.accessor</a> - package baritone.api.utils.accessor</dt>
<dd> </dd>
<dt><a href="baritone/api/utils/input/package-summary.html">baritone.api.utils.input</a> - package baritone.api.utils.input</dt>
<dd> </dd>
<dt><a href="baritone/api/utils/interfaces/package-summary.html">baritone.api.utils.interfaces</a> - package baritone.api.utils.interfaces</dt>
<dd> </dd>
<dt><a href="baritone/api/BaritoneAPI.html" title="class in baritone.api"><span class="typeNameLink">BaritoneAPI</span></a> - Class in <a href="baritone/api/package-summary.html">baritone.api</a></dt>
<dd>
<div class="block">Exposes the <a href="baritone/api/IBaritoneProvider.html" title="interface in baritone.api"><code>IBaritoneProvider</code></a> instance and the <a href="baritone/api/Settings.html" title="class in baritone.api"><code>Settings</code></a> instance for API usage.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/BaritoneAPI.html#BaritoneAPI--">BaritoneAPI()</a></span> - Constructor for class baritone.api.<a href="baritone/api/BaritoneAPI.html" title="class in baritone.api">BaritoneAPI</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/calc/IPathFinder.html#bestPathSoFar--">bestPathSoFar()</a></span> - Method in interface baritone.api.pathing.calc.<a href="baritone/api/pathing/calc/IPathFinder.html" title="interface in baritone.api.pathing.calc">IPathFinder</a></dt>
<dd>
<div class="block">The best path so far, according to the most forgiving coefficient heuristic (the reason being that that path is
most likely to represent the true shape of the path to the goal, assuming it's within a possible cost heuristic.</div>
</dd>
<dt><a href="baritone/api/utils/BetterBlockPos.html" title="class in baritone.api.utils"><span class="typeNameLink">BetterBlockPos</span></a> - Class in <a href="baritone/api/utils/package-summary.html">baritone.api.utils</a></dt>
<dd>
<div class="block">A better BlockPos that has fewer hash collisions (and slightly more performant offsets)</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BetterBlockPos.html#BetterBlockPos-int-int-int-">BetterBlockPos(int, int, int)</a></span> - Constructor for class baritone.api.utils.<a href="baritone/api/utils/BetterBlockPos.html" title="class in baritone.api.utils">BetterBlockPos</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BetterBlockPos.html#BetterBlockPos-double-double-double-">BetterBlockPos(double, double, double)</a></span> - Constructor for class baritone.api.utils.<a href="baritone/api/utils/BetterBlockPos.html" title="class in baritone.api.utils">BetterBlockPos</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BetterBlockPos.html#BetterBlockPos-net.minecraft.util.math.BlockPos-">BetterBlockPos(BlockPos)</a></span> - Constructor for class baritone.api.utils.<a href="baritone/api/utils/BetterBlockPos.html" title="class in baritone.api.utils">BetterBlockPos</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IGetToBlockProcess.html#blacklistClosest--">blacklistClosest()</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IGetToBlockProcess.html" title="interface in baritone.api.process">IGetToBlockProcess</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#blacklistClosestOnFailure">blacklistClosestOnFailure</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">When GetToBlockProcess or MineProcess fails to calculate a path, instead of just giving up, mark the closest instance
of that block as "unreachable" and go towards the next closest.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#blockBreakAdditionalPenalty">blockBreakAdditionalPenalty</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">This is just a tiebreaker to make it less likely to break blocks if it can avoid it.</div>
</dd>
<dt><a href="baritone/api/command/datatypes/BlockById.html" title="enum in baritone.api.command.datatypes"><span class="typeNameLink">BlockById</span></a> - Enum in <a href="baritone/api/command/datatypes/package-summary.html">baritone.api.command.datatypes</a></dt>
<dd> </dd>
<dt><a href="baritone/api/event/events/BlockInteractEvent.html" title="class in baritone.api.event.events"><span class="typeNameLink">BlockInteractEvent</span></a> - Class in <a href="baritone/api/event/events/package-summary.html">baritone.api.event.events</a></dt>
<dd>
<div class="block">Called when the local player interacts with a block, can be either <a href="baritone/api/event/events/BlockInteractEvent.Type.html#START_BREAK"><code>BlockInteractEvent.Type.START_BREAK</code></a> or <a href="baritone/api/event/events/BlockInteractEvent.Type.html#USE"><code>BlockInteractEvent.Type.USE</code></a>.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/event/events/BlockInteractEvent.html#BlockInteractEvent-net.minecraft.util.math.BlockPos-baritone.api.event.events.BlockInteractEvent.Type-">BlockInteractEvent(BlockPos, BlockInteractEvent.Type)</a></span> - Constructor for class baritone.api.event.events.<a href="baritone/api/event/events/BlockInteractEvent.html" title="class in baritone.api.event.events">BlockInteractEvent</a></dt>
<dd> </dd>
<dt><a href="baritone/api/event/events/BlockInteractEvent.Type.html" title="enum in baritone.api.event.events"><span class="typeNameLink">BlockInteractEvent.Type</span></a> - Enum in <a href="baritone/api/event/events/package-summary.html">baritone.api.event.events</a></dt>
<dd> </dd>
<dt><a href="baritone/api/utils/BlockOptionalMeta.html" title="class in baritone.api.utils"><span class="typeNameLink">BlockOptionalMeta</span></a> - Class in <a href="baritone/api/utils/package-summary.html">baritone.api.utils</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BlockOptionalMeta.html#BlockOptionalMeta-net.minecraft.block.Block-java.lang.Integer-">BlockOptionalMeta(Block, Integer)</a></span> - Constructor for class baritone.api.utils.<a href="baritone/api/utils/BlockOptionalMeta.html" title="class in baritone.api.utils">BlockOptionalMeta</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BlockOptionalMeta.html#BlockOptionalMeta-net.minecraft.block.Block-">BlockOptionalMeta(Block)</a></span> - Constructor for class baritone.api.utils.<a href="baritone/api/utils/BlockOptionalMeta.html" title="class in baritone.api.utils">BlockOptionalMeta</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BlockOptionalMeta.html#BlockOptionalMeta-java.lang.String-">BlockOptionalMeta(String)</a></span> - Constructor for class baritone.api.utils.<a href="baritone/api/utils/BlockOptionalMeta.html" title="class in baritone.api.utils">BlockOptionalMeta</a></dt>
<dd> </dd>
<dt><a href="baritone/api/utils/BlockOptionalMetaLookup.html" title="class in baritone.api.utils"><span class="typeNameLink">BlockOptionalMetaLookup</span></a> - Class in <a href="baritone/api/utils/package-summary.html">baritone.api.utils</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BlockOptionalMetaLookup.html#BlockOptionalMetaLookup-baritone.api.utils.BlockOptionalMeta...-">BlockOptionalMetaLookup(BlockOptionalMeta...)</a></span> - Constructor for class baritone.api.utils.<a href="baritone/api/utils/BlockOptionalMetaLookup.html" title="class in baritone.api.utils">BlockOptionalMetaLookup</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BlockOptionalMetaLookup.html#BlockOptionalMetaLookup-net.minecraft.block.Block...-">BlockOptionalMetaLookup(Block...)</a></span> - Constructor for class baritone.api.utils.<a href="baritone/api/utils/BlockOptionalMetaLookup.html" title="class in baritone.api.utils">BlockOptionalMetaLookup</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BlockOptionalMetaLookup.html#BlockOptionalMetaLookup-java.util.List-">BlockOptionalMetaLookup(List<Block>)</a></span> - Constructor for class baritone.api.utils.<a href="baritone/api/utils/BlockOptionalMetaLookup.html" title="class in baritone.api.utils">BlockOptionalMetaLookup</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BlockOptionalMetaLookup.html#BlockOptionalMetaLookup-java.lang.String...-">BlockOptionalMetaLookup(String...)</a></span> - Constructor for class baritone.api.utils.<a href="baritone/api/utils/BlockOptionalMetaLookup.html" title="class in baritone.api.utils">BlockOptionalMetaLookup</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#blockPlacementPenalty">blockPlacementPenalty</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">It doesn't actually take twenty ticks to place a block, this cost is so high
because we want to generally conserve blocks which might be limited.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#blockReachDistance">blockReachDistance</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Block reach distance</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BlockOptionalMetaLookup.html#blocks--">blocks()</a></span> - Method in class baritone.api.utils.<a href="baritone/api/utils/BlockOptionalMetaLookup.html" title="class in baritone.api.utils">BlockOptionalMetaLookup</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BlockOptionalMeta.html#blockStateFromStack-net.minecraft.item.ItemStack-">blockStateFromStack(ItemStack)</a></span> - Static method in class baritone.api.utils.<a href="baritone/api/utils/BlockOptionalMeta.html" title="class in baritone.api.utils">BlockOptionalMeta</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#blocksToAvoid">blocksToAvoid</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Blocks that Baritone will attempt to avoid (Used in avoidance)</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#blocksToAvoidBreaking">blocksToAvoidBreaking</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Blocks that Baritone is not allowed to break</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BlockUtils.html#blockToString-net.minecraft.block.Block-">blockToString(Block)</a></span> - Static method in class baritone.api.utils.<a href="baritone/api/utils/BlockUtils.html" title="class in baritone.api.utils">BlockUtils</a></dt>
<dd> </dd>
<dt><a href="baritone/api/utils/BlockUtils.html" title="class in baritone.api.utils"><span class="typeNameLink">BlockUtils</span></a> - Class in <a href="baritone/api/utils/package-summary.html">baritone.api.utils</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#breakCorrectBlockPenaltyMultiplier">breakCorrectBlockPenaltyMultiplier</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Multiply the cost of breaking a block that's correct in the builder's schematic by this coefficient</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#breakFromAbove">breakFromAbove</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Allow standing above a block while mining it, in BuilderProcess</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/TabCompleteHelper.html#build--">build()</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers">TabCompleteHelper</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IBuilderProcess.html#build-java.lang.String-baritone.api.schematic.ISchematic-net.minecraft.util.math.Vec3i-">build(String, ISchematic, Vec3i)</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IBuilderProcess.html" title="interface in baritone.api.process">IBuilderProcess</a></dt>
<dd>
<div class="block">Requests a build for the specified schematic, labeled as specified, with the specified origin.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IBuilderProcess.html#build-java.lang.String-java.io.File-net.minecraft.util.math.Vec3i-">build(String, File, Vec3i)</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IBuilderProcess.html" title="interface in baritone.api.process">IBuilderProcess</a></dt>
<dd>
<div class="block">Requests a build for the specified schematic, labeled as specified, with the specified origin.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IBuilderProcess.html#build-java.lang.String-net.minecraft.util.math.BlockPos-">build(String, BlockPos)</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IBuilderProcess.html" title="interface in baritone.api.process">IBuilderProcess</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#builderTickScanRadius">builderTickScanRadius</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Distance to scan every tick for updates.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#buildIgnoreBlocks">buildIgnoreBlocks</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">A list of blocks to be treated as if they're air.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#buildIgnoreExisting">buildIgnoreExisting</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">If this is true, the builder will treat all non-air blocks as correct.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#buildInLayers">buildInLayers</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Don't consider the next layer in builder until the current one is done</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IBuilderProcess.html#buildOpenSchematic--">buildOpenSchematic()</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IBuilderProcess.html" title="interface in baritone.api.process">IBuilderProcess</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#buildRepeat">buildRepeat</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">How far to move before repeating the build.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#buildRepeatCount">buildRepeatCount</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">How many times to buildrepeat.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#byLowerName">byLowerName</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">A map of lowercase setting field names to their respective setting</div>
</dd>
</dl>
<a name="I:C">
<!-- -->
</a>
<h2 class="title">C</h2>
<dl>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#cachedChunksExpirySeconds">cachedChunksExpirySeconds</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Cached chunks (regardless of if they're in RAM or saved to disk) expire and are deleted after this number of seconds
-1 to disable</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#cachedChunksOpacity">cachedChunksOpacity</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">0.0f = not visible, fully transparent (instead of setting this to 0, turn off renderCachedChunks)
1.0f = fully opaque</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/RotationUtils.html#calcRotationFromCoords-net.minecraft.util.math.BlockPos-net.minecraft.util.math.BlockPos-">calcRotationFromCoords(BlockPos, BlockPos)</a></span> - Static method in class baritone.api.utils.<a href="baritone/api/utils/RotationUtils.html" title="class in baritone.api.utils">RotationUtils</a></dt>
<dd>
<div class="block">Calculates the rotation from BlockPos<sub>dest</sub> to BlockPos<sub>orig</sub></div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/RotationUtils.html#calcRotationFromVec3d-net.minecraft.util.math.Vec3d-net.minecraft.util.math.Vec3d-baritone.api.utils.Rotation-">calcRotationFromVec3d(Vec3d, Vec3d, Rotation)</a></span> - Static method in class baritone.api.utils.<a href="baritone/api/utils/RotationUtils.html" title="class in baritone.api.utils">RotationUtils</a></dt>
<dd>
<div class="block">Calculates the rotation from Vec<sub>dest</sub> to Vec<sub>orig</sub> and makes the
return value relative to the specified current rotations.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/calc/IPathFinder.html#calculate-long-long-">calculate(long, long)</a></span> - Method in interface baritone.api.pathing.calc.<a href="baritone/api/pathing/calc/IPathFinder.html" title="interface in baritone.api.pathing.calc">IPathFinder</a></dt>
<dd>
<div class="block">Calculate the path in full.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/goals/GoalBlock.html#calculate-double-int-double-">calculate(double, int, double)</a></span> - Static method in class baritone.api.pathing.goals.<a href="baritone/api/pathing/goals/GoalBlock.html" title="class in baritone.api.pathing.goals">GoalBlock</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/goals/GoalXZ.html#calculate-double-double-">calculate(double, double)</a></span> - Static method in class baritone.api.pathing.goals.<a href="baritone/api/pathing/goals/GoalXZ.html" title="class in baritone.api.pathing.goals">GoalXZ</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/goals/GoalYLevel.html#calculate-int-int-">calculate(int, int)</a></span> - Static method in class baritone.api.pathing.goals.<a href="baritone/api/pathing/goals/GoalYLevel.html" title="class in baritone.api.pathing.goals">GoalYLevel</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/VecUtils.html#calculateBlockCenter-net.minecraft.world.World-net.minecraft.util.math.BlockPos-">calculateBlockCenter(World, BlockPos)</a></span> - Static method in class baritone.api.utils.<a href="baritone/api/utils/VecUtils.html" title="class in baritone.api.utils">VecUtils</a></dt>
<dd>
<div class="block">Calculates the center of the block at the specified position's bounding box</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/movement/IMovement.html#calculatedWhileLoaded--">calculatedWhileLoaded()</a></span> - Method in interface baritone.api.pathing.movement.<a href="baritone/api/pathing/movement/IMovement.html" title="interface in baritone.api.pathing.movement">IMovement</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/RotationUtils.html#calcVec3dFromRotation-baritone.api.utils.Rotation-">calcVec3dFromRotation(Rotation)</a></span> - Static method in class baritone.api.utils.<a href="baritone/api/utils/RotationUtils.html" title="class in baritone.api.utils">RotationUtils</a></dt>
<dd>
<div class="block">Calculates the look vector for the specified yaw/pitch rotations.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/event/events/type/Cancellable.html#cancel--">cancel()</a></span> - Method in class baritone.api.event.events.type.<a href="baritone/api/event/events/type/Cancellable.html" title="class in baritone.api.event.events.type">Cancellable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/event/events/type/ICancellable.html#cancel--">cancel()</a></span> - Method in interface baritone.api.event.events.type.<a href="baritone/api/event/events/type/ICancellable.html" title="interface in baritone.api.event.events.type">ICancellable</a></dt>
<dd>
<div class="block">Cancels this event</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IFollowProcess.html#cancel--">cancel()</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IFollowProcess.html" title="interface in baritone.api.process">IFollowProcess</a></dt>
<dd>
<div class="block">Cancels the follow behavior, this will clear the current follow target.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IMineProcess.html#cancel--">cancel()</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IMineProcess.html" title="interface in baritone.api.process">IMineProcess</a></dt>
<dd>
<div class="block">Cancels the current mining task</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/behavior/IPathingBehavior.html#cancelEverything--">cancelEverything()</a></span> - Method in interface baritone.api.behavior.<a href="baritone/api/behavior/IPathingBehavior.html" title="interface in baritone.api.behavior">IPathingBehavior</a></dt>
<dd>
<div class="block">Cancels the pathing behavior or the current path calculation, and all processes that could be controlling path.</div>
</dd>
<dt><a href="baritone/api/event/events/type/Cancellable.html" title="class in baritone.api.event.events.type"><span class="typeNameLink">Cancellable</span></a> - Class in <a href="baritone/api/event/events/type/package-summary.html">baritone.api.event.events.type</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/event/events/type/Cancellable.html#Cancellable--">Cancellable()</a></span> - Constructor for class baritone.api.event.events.type.<a href="baritone/api/event/events/type/Cancellable.html" title="class in baritone.api.event.events.type">Cancellable</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#cancelOnGoalInvalidation">cancelOnGoalInvalidation</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Cancel the current path if the goal has changed, and the path originally ended in the goal but doesn't anymore.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/event/events/PacketEvent.html#cast--">cast()</a></span> - Method in class baritone.api.event.events.<a href="baritone/api/event/events/PacketEvent.html" title="class in baritone.api.event.events">PacketEvent</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BlockOptionalMeta.html#castToIProperty-java.lang.Object-">castToIProperty(Object)</a></span> - Static method in class baritone.api.utils.<a href="baritone/api/utils/BlockOptionalMeta.html" title="class in baritone.api.utils">BlockOptionalMeta</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BlockOptionalMeta.html#castToIPropertyValue-P-java.lang.Object-">castToIPropertyValue(P, Object)</a></span> - Static method in class baritone.api.utils.<a href="baritone/api/utils/BlockOptionalMeta.html" title="class in baritone.api.utils">BlockOptionalMeta</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#censorCoordinates">censorCoordinates</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Censor coordinates in goals and block positions</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#censorRanCommands">censorRanCommands</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Censor arguments to ran commands, to hide, for example, coordinates to #goal</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/movement/ActionCosts.html#CENTER_AFTER_FALL_COST">CENTER_AFTER_FALL_COST</a></span> - Static variable in interface baritone.api.pathing.movement.<a href="baritone/api/pathing/movement/ActionCosts.html" title="interface in baritone.api.pathing.movement">ActionCosts</a></dt>
<dd>
<div class="block">To walk the rest of the way to be centered on the new block</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#chatControl">chatControl</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Allow chat based control of Baritone.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#chatControlAnyway">chatControlAnyway</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Some clients like Impact try to force chatControl to off, so here's a second setting to do it anyway</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#chatDebug">chatDebug</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Print all the debug messages to chat</div>
</dd>
<dt><a href="baritone/api/event/events/ChatEvent.html" title="class in baritone.api.event.events"><span class="typeNameLink">ChatEvent</span></a> - Class in <a href="baritone/api/event/events/package-summary.html">baritone.api.event.events</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/event/events/ChatEvent.html#ChatEvent-java.lang.String-">ChatEvent(String)</a></span> - Constructor for class baritone.api.event.events.<a href="baritone/api/event/events/ChatEvent.html" title="class in baritone.api.event.events">ChatEvent</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#chunkCaching">chunkCaching</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The big one.</div>
</dd>
<dt><a href="baritone/api/event/events/ChunkEvent.html" title="class in baritone.api.event.events"><span class="typeNameLink">ChunkEvent</span></a> - Class in <a href="baritone/api/event/events/package-summary.html">baritone.api.event.events</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/event/events/ChunkEvent.html#ChunkEvent-baritone.api.event.events.type.EventState-baritone.api.event.events.ChunkEvent.Type-int-int-">ChunkEvent(EventState, ChunkEvent.Type, int, int)</a></span> - Constructor for class baritone.api.event.events.<a href="baritone/api/event/events/ChunkEvent.html" title="class in baritone.api.event.events">ChunkEvent</a></dt>
<dd> </dd>
<dt><a href="baritone/api/event/events/ChunkEvent.Type.html" title="enum in baritone.api.event.events"><span class="typeNameLink">ChunkEvent.Type</span></a> - Enum in <a href="baritone/api/event/events/package-summary.html">baritone.api.event.events</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/Rotation.html#clamp--">clamp()</a></span> - Method in class baritone.api.utils.<a href="baritone/api/utils/Rotation.html" title="class in baritone.api.utils">Rotation</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/Rotation.html#clampPitch-float-">clampPitch(float)</a></span> - Static method in class baritone.api.utils.<a href="baritone/api/utils/Rotation.html" title="class in baritone.api.utils">Rotation</a></dt>
<dd>
<div class="block">Clamps the specified pitch value between -90 and 90.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/IInputOverrideHandler.html#clearAllKeys--">clearAllKeys()</a></span> - Method in interface baritone.api.utils.<a href="baritone/api/utils/IInputOverrideHandler.html" title="interface in baritone.api.utils">IInputOverrideHandler</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IBuilderProcess.html#clearArea-net.minecraft.util.math.BlockPos-net.minecraft.util.math.BlockPos-">clearArea(BlockPos, BlockPos)</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IBuilderProcess.html" title="interface in baritone.api.process">IBuilderProcess</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/IPlayerController.html#clickBlock-net.minecraft.util.math.BlockPos-net.minecraft.util.EnumFacing-">clickBlock(BlockPos, EnumFacing)</a></span> - Method in interface baritone.api.utils.<a href="baritone/api/utils/IPlayerController.html" title="interface in baritone.api.utils">IPlayerController</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#colorBestPathSoFar">colorBestPathSoFar</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The color of the best path so far</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#colorBlocksToBreak">colorBlocksToBreak</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The color of the blocks to break</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#colorBlocksToPlace">colorBlocksToPlace</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The color of the blocks to place</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#colorBlocksToWalkInto">colorBlocksToWalkInto</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The color of the blocks to walk into</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#colorCurrentPath">colorCurrentPath</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The color of the current path</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#colorGoalBox">colorGoalBox</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The color of the goal box</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#colorInvertedGoalBox">colorInvertedGoalBox</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The color of the goal box when it's inverted</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#colorMostRecentConsidered">colorMostRecentConsidered</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The color of the path to the most recent considered node</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#colorNextPath">colorNextPath</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The color of the next path</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#colorSelection">colorSelection</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The color of all selections</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#colorSelectionPos1">colorSelectionPos1</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The color of the selection pos 1</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#colorSelectionPos2">colorSelectionPos2</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The color of the selection pos 2</div>
</dd>
<dt><a href="baritone/api/command/Command.html" title="class in baritone.api.command"><span class="typeNameLink">Command</span></a> - Class in <a href="baritone/api/command/package-summary.html">baritone.api.command</a></dt>
<dd>
<div class="block">A default implementation of <a href="baritone/api/command/ICommand.html" title="interface in baritone.api.command"><code>ICommand</code></a> which provides easy access to the
command's bound <a href="baritone/api/IBaritone.html" title="interface in baritone.api"><code>IBaritone</code></a> instance, <a href="baritone/api/utils/IPlayerContext.html" title="interface in baritone.api.utils"><code>IPlayerContext</code></a> and an easy
way to provide multiple valid command execution names through the default constructor.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/Command.html#Command-baritone.api.IBaritone-java.lang.String...-">Command(IBaritone, String...)</a></span> - Constructor for class baritone.api.command.<a href="baritone/api/command/Command.html" title="class in baritone.api.command">Command</a></dt>
<dd>
<div class="block">Creates a new Baritone control command.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandNotFoundException.html#command">command</a></span> - Variable in exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandNotFoundException.html" title="class in baritone.api.command.exception">CommandNotFoundException</a></dt>
<dd> </dd>
<dt><a href="baritone/api/command/exception/CommandErrorMessageException.html" title="class in baritone.api.command.exception"><span class="typeNameLink">CommandErrorMessageException</span></a> - Exception in <a href="baritone/api/command/exception/package-summary.html">baritone.api.command.exception</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandErrorMessageException.html#CommandErrorMessageException-java.lang.String-">CommandErrorMessageException(String)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandErrorMessageException.html" title="class in baritone.api.command.exception">CommandErrorMessageException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandErrorMessageException.html#CommandErrorMessageException-java.lang.String-java.lang.Throwable-">CommandErrorMessageException(String, Throwable)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandErrorMessageException.html" title="class in baritone.api.command.exception">CommandErrorMessageException</a></dt>
<dd> </dd>
<dt><a href="baritone/api/command/exception/CommandException.html" title="class in baritone.api.command.exception"><span class="typeNameLink">CommandException</span></a> - Exception in <a href="baritone/api/command/exception/package-summary.html">baritone.api.command.exception</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandException.html#CommandException-java.lang.String-">CommandException(String)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandException.html" title="class in baritone.api.command.exception">CommandException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandException.html#CommandException-java.lang.String-java.lang.Throwable-">CommandException(String, Throwable)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandException.html" title="class in baritone.api.command.exception">CommandException</a></dt>
<dd> </dd>
<dt><a href="baritone/api/command/exception/CommandInvalidArgumentException.html" title="class in baritone.api.command.exception"><span class="typeNameLink">CommandInvalidArgumentException</span></a> - Exception in <a href="baritone/api/command/exception/package-summary.html">baritone.api.command.exception</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandInvalidArgumentException.html#CommandInvalidArgumentException-baritone.api.command.argument.ICommandArgument-java.lang.String-">CommandInvalidArgumentException(ICommandArgument, String)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandInvalidArgumentException.html" title="class in baritone.api.command.exception">CommandInvalidArgumentException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandInvalidArgumentException.html#CommandInvalidArgumentException-baritone.api.command.argument.ICommandArgument-java.lang.String-java.lang.Throwable-">CommandInvalidArgumentException(ICommandArgument, String, Throwable)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandInvalidArgumentException.html" title="class in baritone.api.command.exception">CommandInvalidArgumentException</a></dt>
<dd> </dd>
<dt><a href="baritone/api/command/exception/CommandInvalidStateException.html" title="class in baritone.api.command.exception"><span class="typeNameLink">CommandInvalidStateException</span></a> - Exception in <a href="baritone/api/command/exception/package-summary.html">baritone.api.command.exception</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandInvalidStateException.html#CommandInvalidStateException-java.lang.String-">CommandInvalidStateException(String)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandInvalidStateException.html" title="class in baritone.api.command.exception">CommandInvalidStateException</a></dt>
<dd> </dd>
<dt><a href="baritone/api/command/exception/CommandInvalidTypeException.html" title="class in baritone.api.command.exception"><span class="typeNameLink">CommandInvalidTypeException</span></a> - Exception in <a href="baritone/api/command/exception/package-summary.html">baritone.api.command.exception</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandInvalidTypeException.html#CommandInvalidTypeException-baritone.api.command.argument.ICommandArgument-java.lang.String-">CommandInvalidTypeException(ICommandArgument, String)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandInvalidTypeException.html" title="class in baritone.api.command.exception">CommandInvalidTypeException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandInvalidTypeException.html#CommandInvalidTypeException-baritone.api.command.argument.ICommandArgument-java.lang.String-java.lang.Throwable-">CommandInvalidTypeException(ICommandArgument, String, Throwable)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandInvalidTypeException.html" title="class in baritone.api.command.exception">CommandInvalidTypeException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandInvalidTypeException.html#CommandInvalidTypeException-baritone.api.command.argument.ICommandArgument-java.lang.String-java.lang.String-">CommandInvalidTypeException(ICommandArgument, String, String)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandInvalidTypeException.html" title="class in baritone.api.command.exception">CommandInvalidTypeException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandInvalidTypeException.html#CommandInvalidTypeException-baritone.api.command.argument.ICommandArgument-java.lang.String-java.lang.String-java.lang.Throwable-">CommandInvalidTypeException(ICommandArgument, String, String, Throwable)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandInvalidTypeException.html" title="class in baritone.api.command.exception">CommandInvalidTypeException</a></dt>
<dd> </dd>
<dt><a href="baritone/api/command/exception/CommandNoParserForTypeException.html" title="class in baritone.api.command.exception"><span class="typeNameLink">CommandNoParserForTypeException</span></a> - Exception in <a href="baritone/api/command/exception/package-summary.html">baritone.api.command.exception</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandNoParserForTypeException.html#CommandNoParserForTypeException-java.lang.Class-">CommandNoParserForTypeException(Class<?>)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandNoParserForTypeException.html" title="class in baritone.api.command.exception">CommandNoParserForTypeException</a></dt>
<dd> </dd>
<dt><a href="baritone/api/command/exception/CommandNotEnoughArgumentsException.html" title="class in baritone.api.command.exception"><span class="typeNameLink">CommandNotEnoughArgumentsException</span></a> - Exception in <a href="baritone/api/command/exception/package-summary.html">baritone.api.command.exception</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandNotEnoughArgumentsException.html#CommandNotEnoughArgumentsException-int-">CommandNotEnoughArgumentsException(int)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandNotEnoughArgumentsException.html" title="class in baritone.api.command.exception">CommandNotEnoughArgumentsException</a></dt>
<dd> </dd>
<dt><a href="baritone/api/command/exception/CommandNotFoundException.html" title="class in baritone.api.command.exception"><span class="typeNameLink">CommandNotFoundException</span></a> - Exception in <a href="baritone/api/command/exception/package-summary.html">baritone.api.command.exception</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandNotFoundException.html#CommandNotFoundException-java.lang.String-">CommandNotFoundException(String)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandNotFoundException.html" title="class in baritone.api.command.exception">CommandNotFoundException</a></dt>
<dd> </dd>
<dt><a href="baritone/api/command/exception/CommandTooManyArgumentsException.html" title="class in baritone.api.command.exception"><span class="typeNameLink">CommandTooManyArgumentsException</span></a> - Exception in <a href="baritone/api/command/exception/package-summary.html">baritone.api.command.exception</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandTooManyArgumentsException.html#CommandTooManyArgumentsException-int-">CommandTooManyArgumentsException(int)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandTooManyArgumentsException.html" title="class in baritone.api.command.exception">CommandTooManyArgumentsException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/PathingCommand.html#commandType">commandType</a></span> - Variable in class baritone.api.process.<a href="baritone/api/process/PathingCommand.html" title="class in baritone.api.process">PathingCommand</a></dt>
<dd>
<div class="block">The command type.</div>
</dd>
<dt><a href="baritone/api/command/exception/CommandUnhandledException.html" title="class in baritone.api.command.exception"><span class="typeNameLink">CommandUnhandledException</span></a> - Exception in <a href="baritone/api/command/exception/package-summary.html">baritone.api.command.exception</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandUnhandledException.html#CommandUnhandledException-java.lang.String-">CommandUnhandledException(String)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandUnhandledException.html" title="class in baritone.api.command.exception">CommandUnhandledException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/exception/CommandUnhandledException.html#CommandUnhandledException-java.lang.Throwable-">CommandUnhandledException(Throwable)</a></span> - Constructor for exception baritone.api.command.exception.<a href="baritone/api/command/exception/CommandUnhandledException.html" title="class in baritone.api.command.exception">CommandUnhandledException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/event/events/TabCompleteEvent.html#completions">completions</a></span> - Variable in class baritone.api.event.events.<a href="baritone/api/event/events/TabCompleteEvent.html" title="class in baritone.api.event.events">TabCompleteEvent</a></dt>
<dd> </dd>
<dt><a href="baritone/api/schematic/CompositeSchematic.html" title="class in baritone.api.schematic"><span class="typeNameLink">CompositeSchematic</span></a> - Class in <a href="baritone/api/schematic/package-summary.html">baritone.api.schematic</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/schematic/CompositeSchematic.html#CompositeSchematic-int-int-int-">CompositeSchematic(int, int, int)</a></span> - Constructor for class baritone.api.schematic.<a href="baritone/api/schematic/CompositeSchematic.html" title="class in baritone.api.schematic">CompositeSchematic</a></dt>
<dd> </dd>
<dt><a href="baritone/api/schematic/CompositeSchematicEntry.html" title="class in baritone.api.schematic"><span class="typeNameLink">CompositeSchematicEntry</span></a> - Class in <a href="baritone/api/schematic/package-summary.html">baritone.api.schematic</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/schematic/CompositeSchematicEntry.html#CompositeSchematicEntry-baritone.api.schematic.ISchematic-int-int-int-">CompositeSchematicEntry(ISchematic, int, int, int)</a></span> - Constructor for class baritone.api.schematic.<a href="baritone/api/schematic/CompositeSchematicEntry.html" title="class in baritone.api.schematic">CompositeSchematicEntry</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#considerPotionEffects">considerPotionEffects</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">For example, if you have Mining Fatigue or Haste, adjust the costs of breaking blocks accordingly.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/argument/IArgConsumer.html#consumed--">consumed()</a></span> - Method in interface baritone.api.command.argument.<a href="baritone/api/command/argument/IArgConsumer.html" title="interface in baritone.api.command.argument">IArgConsumer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/argument/IArgConsumer.html#consumedString--">consumedString()</a></span> - Method in interface baritone.api.command.argument.<a href="baritone/api/command/argument/IArgConsumer.html" title="interface in baritone.api.command.argument">IArgConsumer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#containerMemory">containerMemory</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Remember the contents of containers (chests, echests, furnaces)</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/selection/ISelection.html#contract-net.minecraft.util.EnumFacing-int-">contract(EnumFacing, int)</a></span> - Method in interface baritone.api.selection.<a href="baritone/api/selection/ISelection.html" title="interface in baritone.api.selection">ISelection</a></dt>
<dd>
<div class="block">Returns a new <a href="baritone/api/selection/ISelection.html" title="interface in baritone.api.selection"><code>ISelection</code></a> contracted in the specified direction by the specified number of blocks.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/selection/ISelectionManager.html#contract-baritone.api.selection.ISelection-net.minecraft.util.EnumFacing-int-">contract(ISelection, EnumFacing, int)</a></span> - Method in interface baritone.api.selection.<a href="baritone/api/selection/ISelectionManager.html" title="interface in baritone.api.selection">ISelectionManager</a></dt>
<dd>
<div class="block">Replaces the specified <a href="baritone/api/selection/ISelection.html" title="interface in baritone.api.selection"><code>ISelection</code></a> with one contracted in the specified direction by the specified number
of blocks.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/argument/IArgConsumer.html#copy--">copy()</a></span> - Method in interface baritone.api.command.argument.<a href="baritone/api/command/argument/IArgConsumer.html" title="interface in baritone.api.command.argument">IArgConsumer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/movement/ActionCosts.html#COST_INF">COST_INF</a></span> - Static variable in interface baritone.api.pathing.movement.<a href="baritone/api/pathing/movement/ActionCosts.html" title="interface in baritone.api.pathing.movement">ActionCosts</a></dt>
<dd>
<div class="block">don't make this Double.MAX_VALUE because it's added to other things, maybe other COST_INFs,
and that would make it overflow to negative</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#costHeuristic">costHeuristic</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">This is the big A* setting.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#costVerificationLookahead">costVerificationLookahead</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Stop 5 movements before anything that made the path COST_INF.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/event/events/TickEvent.html#createNextProvider--">createNextProvider()</a></span> - Static method in class baritone.api.event.events.<a href="baritone/api/event/events/TickEvent.html" title="class in baritone.api.event.events">TickEvent</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/Command.html#ctx">ctx</a></span> - Variable in class baritone.api.command.<a href="baritone/api/command/Command.html" title="class in baritone.api.command">Command</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IFollowProcess.html#currentFilter--">currentFilter()</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IFollowProcess.html" title="interface in baritone.api.process">IFollowProcess</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#cutoffAtLoadBoundary">cutoffAtLoadBoundary</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">After calculating a path (potentially through cached chunks), artificially cut it off to just the part that is
entirely within currently loaded chunks.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/calc/IPath.html#cutoffAtLoadedChunks-java.lang.Object-">cutoffAtLoadedChunks(Object)</a></span> - Method in interface baritone.api.pathing.calc.<a href="baritone/api/pathing/calc/IPath.html" title="interface in baritone.api.pathing.calc">IPath</a></dt>
<dd>
<div class="block">Cuts off this path at the loaded chunk border, and returns the resulting path.</div>
</dd>
</dl>
<a name="I:D">
<!-- -->
</a>
<h2 class="title">D</h2>
<dl>
<dt><span class="memberNameLink"><a href="baritone/api/process/IBaritoneProcess.html#DEFAULT_PRIORITY">DEFAULT_PRIORITY</a></span> - Static variable in interface baritone.api.process.<a href="baritone/api/process/IBaritoneProcess.html" title="interface in baritone.api.process">IBaritoneProcess</a></dt>
<dd>
<div class="block">Default priority.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.Setting.html#defaultValue">defaultValue</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.Setting.html" title="class in baritone.api">Settings.Setting</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/RotationUtils.html#DEG_TO_RAD">DEG_TO_RAD</a></span> - Static variable in class baritone.api.utils.<a href="baritone/api/utils/RotationUtils.html" title="class in baritone.api.utils">RotationUtils</a></dt>
<dd>
<div class="block">Constant that a degree value is multiplied by to get the equivalent radian value</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/registry/Registry.html#descendingIterator--">descendingIterator()</a></span> - Method in class baritone.api.command.registry.<a href="baritone/api/command/registry/Registry.html" title="class in baritone.api.command.registry">Registry</a></dt>
<dd>
<div class="block">Returns an iterator that iterates over each entry in this registry, in the order they were added.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/registry/Registry.html#descendingStream--">descendingStream()</a></span> - Method in class baritone.api.command.registry.<a href="baritone/api/command/registry/Registry.html" title="class in baritone.api.command.registry">Registry</a></dt>
<dd>
<div class="block">Returns a stream that returns each entry in this registry, in the order they were added.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/schematic/CompositeSchematic.html#desiredState-int-int-int-net.minecraft.block.state.IBlockState-java.util.List-">desiredState(int, int, int, IBlockState, List<IBlockState>)</a></span> - Method in class baritone.api.schematic.<a href="baritone/api/schematic/CompositeSchematic.html" title="class in baritone.api.schematic">CompositeSchematic</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/schematic/FillSchematic.html#desiredState-int-int-int-net.minecraft.block.state.IBlockState-java.util.List-">desiredState(int, int, int, IBlockState, List<IBlockState>)</a></span> - Method in class baritone.api.schematic.<a href="baritone/api/schematic/FillSchematic.html" title="class in baritone.api.schematic">FillSchematic</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/schematic/ISchematic.html#desiredState-int-int-int-net.minecraft.block.state.IBlockState-java.util.List-">desiredState(int, int, int, IBlockState, List<IBlockState>)</a></span> - Method in interface baritone.api.schematic.<a href="baritone/api/schematic/ISchematic.html" title="interface in baritone.api.schematic">ISchematic</a></dt>
<dd>
<div class="block">Returns the desired block state at a given (X, Y, Z) position relative to the origin (0, 0, 0).</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/schematic/MaskSchematic.html#desiredState-int-int-int-net.minecraft.block.state.IBlockState-java.util.List-">desiredState(int, int, int, IBlockState, List<IBlockState>)</a></span> - Method in class baritone.api.schematic.<a href="baritone/api/schematic/MaskSchematic.html" title="class in baritone.api.schematic">MaskSchematic</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#desktopNotifications">desktopNotifications</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Desktop notifications</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#disableAutoTool">disableAutoTool</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">If this setting is on, no auto tool will occur at all, not at calculation time nor execution time</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#disableCompletionCheck">disableCompletionCheck</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Turn this on if your exploration filter is enormous, you don't want it to check if it's done,
and you are just fine with it just hanging on completion</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#disconnectOnArrival">disconnectOnArrival</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Disconnect from the server upon arriving at your goal</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/Paginator.html#display-java.util.function.Function-java.lang.String-">display(Function<E, ITextComponent>, String)</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/Paginator.html" title="class in baritone.api.command.helpers">Paginator</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/Paginator.html#display-java.util.function.Function-">display(Function<E, ITextComponent>)</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/Paginator.html" title="class in baritone.api.command.helpers">Paginator</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IBaritoneProcess.html#displayName--">displayName()</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IBaritoneProcess.html" title="interface in baritone.api.process">IBaritoneProcess</a></dt>
<dd>
<div class="block">Returns a user-friendly name for this process.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IBaritoneProcess.html#displayName0--">displayName0()</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IBaritoneProcess.html" title="interface in baritone.api.process">IBaritoneProcess</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/VecUtils.html#distanceToCenter-net.minecraft.util.math.BlockPos-double-double-double-">distanceToCenter(BlockPos, double, double, double)</a></span> - Static method in class baritone.api.utils.<a href="baritone/api/utils/VecUtils.html" title="class in baritone.api.utils">VecUtils</a></dt>
<dd>
<div class="block">Gets the distance from the specified position to the assumed center of the specified block position.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/movement/ActionCosts.html#distanceToTicks-double-">distanceToTicks(double)</a></span> - Static method in interface baritone.api.pathing.movement.<a href="baritone/api/pathing/movement/ActionCosts.html" title="interface in baritone.api.pathing.movement">ActionCosts</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#distanceTrim">distanceTrim</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Trim incorrect positions too far away, helps performance but hurts reliability in very large schematics</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BetterBlockPos.html#down--">down()</a></span> - Method in class baritone.api.utils.<a href="baritone/api/utils/BetterBlockPos.html" title="class in baritone.api.utils">BetterBlockPos</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BetterBlockPos.html#down-int-">down(int)</a></span> - Method in class baritone.api.utils.<a href="baritone/api/utils/BetterBlockPos.html" title="class in baritone.api.utils">BetterBlockPos</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/goals/GoalStrictDirection.html#dx">dx</a></span> - Variable in class baritone.api.pathing.goals.<a href="baritone/api/pathing/goals/GoalStrictDirection.html" title="class in baritone.api.pathing.goals">GoalStrictDirection</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/goals/GoalStrictDirection.html#dz">dz</a></span> - Variable in class baritone.api.pathing.goals.<a href="baritone/api/pathing/goals/GoalStrictDirection.html" title="class in baritone.api.pathing.goals">GoalStrictDirection</a></dt>
<dd> </dd>
</dl>
<a name="I:E">
<!-- -->
</a>
<h2 class="title">E</h2>
<dl>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BetterBlockPos.html#east--">east()</a></span> - Method in class baritone.api.utils.<a href="baritone/api/utils/BetterBlockPos.html" title="class in baritone.api.utils">BetterBlockPos</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BetterBlockPos.html#east-int-">east(int)</a></span> - Method in class baritone.api.utils.<a href="baritone/api/utils/BetterBlockPos.html" title="class in baritone.api.utils">BetterBlockPos</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#echoCommands">echoCommands</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Echo commands to chat when they are run</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#enterPortal">enterPortal</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">When running a goto towards a nether portal block, walk all the way into the portal
instead of stopping one block before.</div>
</dd>
<dt><a href="baritone/api/command/datatypes/EntityClassById.html" title="enum in baritone.api.command.datatypes"><span class="typeNameLink">EntityClassById</span></a> - Enum in <a href="baritone/api/command/datatypes/package-summary.html">baritone.api.command.datatypes</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/VecUtils.html#entityDistanceToCenter-net.minecraft.entity.Entity-net.minecraft.util.math.BlockPos-">entityDistanceToCenter(Entity, BlockPos)</a></span> - Static method in class baritone.api.utils.<a href="baritone/api/utils/VecUtils.html" title="class in baritone.api.utils">VecUtils</a></dt>
<dd>
<div class="block">Gets the distance from the specified entity's position to the assumed
center of the specified block position.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/VecUtils.html#entityFlatDistanceToCenter-net.minecraft.entity.Entity-net.minecraft.util.math.BlockPos-">entityFlatDistanceToCenter(Entity, BlockPos)</a></span> - Static method in class baritone.api.utils.<a href="baritone/api/utils/VecUtils.html" title="class in baritone.api.utils">VecUtils</a></dt>
<dd>
<div class="block">Gets the distance from the specified entity's position to the assumed
center of the specified block position, ignoring the Y axis.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/Paginator.html#entries">entries</a></span> - Variable in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/Paginator.html" title="class in baritone.api.command.helpers">Paginator</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/registry/Registry.html#entries">entries</a></span> - Variable in class baritone.api.command.registry.<a href="baritone/api/command/registry/Registry.html" title="class in baritone.api.command.registry">Registry</a></dt>
<dd>
<div class="block">The collection of entries that are currently in this registry.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/cache/Waypoint.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class baritone.api.cache.<a href="baritone/api/cache/Waypoint.html" title="class in baritone.api.cache">Waypoint</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/BetterBlockPos.html#equals-java.lang.Object-">equals(Object)</a></span> - Method in class baritone.api.utils.<a href="baritone/api/utils/BetterBlockPos.html" title="class in baritone.api.utils">BetterBlockPos</a></dt>
<dd> </dd>
<dt><a href="baritone/api/event/events/type/EventState.html" title="enum in baritone.api.event.events.type"><span class="typeNameLink">EventState</span></a> - Enum in <a href="baritone/api/event/events/type/package-summary.html">baritone.api.event.events.type</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/ICommand.html#execute-java.lang.String-baritone.api.command.argument.IArgConsumer-">execute(String, IArgConsumer)</a></span> - Method in interface baritone.api.command.<a href="baritone/api/command/ICommand.html" title="interface in baritone.api.command">ICommand</a></dt>
<dd>
<div class="block">Called when this command is executed.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/manager/ICommandManager.html#execute-java.lang.String-">execute(String)</a></span> - Method in interface baritone.api.command.manager.<a href="baritone/api/command/manager/ICommandManager.html" title="interface in baritone.api.command.manager">ICommandManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/manager/ICommandManager.html#execute-net.minecraft.util.Tuple-">execute(Tuple<String, List<ICommandArgument>>)</a></span> - Method in interface baritone.api.command.manager.<a href="baritone/api/command/manager/ICommandManager.html" title="interface in baritone.api.command.manager">ICommandManager</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/selection/ISelection.html#expand-net.minecraft.util.EnumFacing-int-">expand(EnumFacing, int)</a></span> - Method in interface baritone.api.selection.<a href="baritone/api/selection/ISelection.html" title="interface in baritone.api.selection">ISelection</a></dt>
<dd>
<div class="block">Returns a new <a href="baritone/api/selection/ISelection.html" title="interface in baritone.api.selection"><code>ISelection</code></a> expanded in the specified direction by the specified number of blocks.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/selection/ISelectionManager.html#expand-baritone.api.selection.ISelection-net.minecraft.util.EnumFacing-int-">expand(ISelection, EnumFacing, int)</a></span> - Method in interface baritone.api.selection.<a href="baritone/api/selection/ISelectionManager.html" title="interface in baritone.api.selection">ISelectionManager</a></dt>
<dd>
<div class="block">Replaces the specified <a href="baritone/api/selection/ISelection.html" title="interface in baritone.api.selection"><code>ISelection</code></a> with one expanded in the specified direction by the specified number of
blocks.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IExploreProcess.html#explore-int-int-">explore(int, int)</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IExploreProcess.html" title="interface in baritone.api.process">IExploreProcess</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#exploreChunkSetMinimumSize">exploreChunkSetMinimumSize</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Take the 10 closest chunks, even if they aren't strictly tied for distance metric from origin.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#exploreForBlocks">exploreForBlocks</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">When GetToBlock doesn't know any locations for the desired block, explore randomly instead of giving up.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#exploreMaintainY">exploreMaintainY</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Attempt to maintain Y coordinate while exploring</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#extendCacheOnThreshold">extendCacheOnThreshold</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">When the cache scan gives less blocks than the maximum threshold (but still above zero), scan the main world too.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/utils/IPlayerContext.html#eyeHeight-boolean-">eyeHeight(boolean)</a></span> - Static method in interface baritone.api.utils.<a href="baritone/api/utils/IPlayerContext.html" title="interface in baritone.api.utils">IPlayerContext</a></dt>
<dd> </dd>
</dl>
<a name="I:F">
<!-- -->
</a>
<h2 class="title">F</h2>
<dl>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#fadePath">fadePath</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Start fading out the path at 20 movements ahead, and stop rendering it entirely 30 movements ahead.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#failureTimeoutMS">failureTimeoutMS</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">Pathing can never take longer than this, even if that means failing to find any path at all</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/movement/ActionCosts.html#FALL_0_25_BLOCKS_COST">FALL_0_25_BLOCKS_COST</a></span> - Static variable in interface baritone.api.pathing.movement.<a href="baritone/api/pathing/movement/ActionCosts.html" title="interface in baritone.api.pathing.movement">ActionCosts</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/movement/ActionCosts.html#FALL_1_25_BLOCKS_COST">FALL_1_25_BLOCKS_COST</a></span> - Static variable in interface baritone.api.pathing.movement.<a href="baritone/api/pathing/movement/ActionCosts.html" title="interface in baritone.api.pathing.movement">ActionCosts</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/pathing/movement/ActionCosts.html#FALL_N_BLOCKS_COST">FALL_N_BLOCKS_COST</a></span> - Static variable in interface baritone.api.pathing.movement.<a href="baritone/api/pathing/movement/ActionCosts.html" title="interface in baritone.api.pathing.movement">ActionCosts</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IFarmProcess.html#farm--">farm()</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IFarmProcess.html" title="interface in baritone.api.process">IFarmProcess</a></dt>
<dd> </dd>
<dt><a href="baritone/api/schematic/FillSchematic.html" title="class in baritone.api.schematic"><span class="typeNameLink">FillSchematic</span></a> - Class in <a href="baritone/api/schematic/package-summary.html">baritone.api.schematic</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/schematic/FillSchematic.html#FillSchematic-int-int-int-baritone.api.utils.BlockOptionalMeta-">FillSchematic(int, int, int, BlockOptionalMeta)</a></span> - Constructor for class baritone.api.schematic.<a href="baritone/api/schematic/FillSchematic.html" title="class in baritone.api.schematic">FillSchematic</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/schematic/FillSchematic.html#FillSchematic-int-int-int-net.minecraft.block.state.IBlockState-">FillSchematic(int, int, int, IBlockState)</a></span> - Constructor for class baritone.api.schematic.<a href="baritone/api/schematic/FillSchematic.html" title="class in baritone.api.schematic">FillSchematic</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/TabCompleteHelper.html#filter-java.util.function.Predicate-">filter(Predicate<String>)</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers">TabCompleteHelper</a></dt>
<dd>
<div class="block">Apply the specified <code>filter</code> to every element <b>currently</b> in this <a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers"><code>TabCompleteHelper</code></a> and return
this object for chaining</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/TabCompleteHelper.html#filterPrefix-java.lang.String-">filterPrefix(String)</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers">TabCompleteHelper</a></dt>
<dd>
<div class="block">Filter out any element that doesn't start with <code>prefix</code> and return this object for chaining</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/helpers/TabCompleteHelper.html#filterPrefixNamespaced-java.lang.String-">filterPrefixNamespaced(String)</a></span> - Method in class baritone.api.command.helpers.<a href="baritone/api/command/helpers/TabCompleteHelper.html" title="class in baritone.api.command.helpers">TabCompleteHelper</a></dt>
<dd>
<div class="block">Filter out any element that doesn't start with <code>prefix</code> and return this object for chaining</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IFollowProcess.html#follow-java.util.function.Predicate-">follow(Predicate<Entity>)</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IFollowProcess.html" title="interface in baritone.api.process">IFollowProcess</a></dt>
<dd>
<div class="block">Set the follow target to any entities matching this predicate</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/process/IFollowProcess.html#following--">following()</a></span> - Method in interface baritone.api.process.<a href="baritone/api/process/IFollowProcess.html" title="interface in baritone.api.process">IFollowProcess</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#followOffsetDirection">followOffsetDirection</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The actual GoalNear is set in this direction from the entity you're following.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#followOffsetDistance">followOffsetDistance</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The actual GoalNear is set this distance away from the entity you're following</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/Settings.html#followRadius">followRadius</a></span> - Variable in class baritone.api.<a href="baritone/api/Settings.html" title="class in baritone.api">Settings</a></dt>
<dd>
<div class="block">The radius (for the GoalNear) of how close to your target position you actually have to be</div>
</dd>
<dt><a href="baritone/api/command/datatypes/ForBlockOptionalMeta.html" title="enum in baritone.api.command.datatypes"><span class="typeNameLink">ForBlockOptionalMeta</span></a> - Enum in <a href="baritone/api/command/datatypes/package-summary.html">baritone.api.command.datatypes</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="baritone/api/command/IBaritoneChatControl.html#FORCE_COMMAND_PREFIX">FORCE_COMMAND_PREFIX</a></span> - Static variable in interface baritone.api.command.<a href="baritone/api/command/IBaritoneChatControl.html" title="interface in baritone.api.command">IBaritoneChatControl</a></dt>
<dd>
<div class="block">In certain cases chat components need to execute commands for you.</div>
</dd>
<dt><span class="memberNameLink"><a href="baritone/api/behavior/IPathingBehavior.html#forceCancel--">forceCancel()</a></span> - Method in interface baritone.api.behavior.<a href="baritone/api/behavior/IPathingBehavior.html" title="interface in baritone.api.behavior">IPathingBehavior</a></dt>
<dd>