Package baritone.api.process
Interface IMineProcess
- All Superinterfaces:
IBaritoneProcess
- Since:
- 9/23/2018
- Author:
- Brady
-
Field Summary
Fields inherited from interface baritone.api.process.IBaritoneProcess
DEFAULT_PRIORITY -
Method Summary
Modifier and TypeMethodDescriptiondefault voidcancel()Cancels the current mining taskdefault voidmine(int quantity, BlockOptionalMeta... boms) Begin to search for and mine the specified blocks.voidmine(int quantity, BlockOptionalMetaLookup filter) Begin to search for and mine the specified blocks until the number of specified items to get from the blocks that are mined.default voidmine(int quantity, net.minecraft.world.level.block.Block... blocks) Begin to search for and mine the specified blocks.default voidmine(BlockOptionalMeta... boms) Begin to search for and mine the specified blocks.default voidmine(BlockOptionalMetaLookup filter) Begin to search for and mine the specified blocks.default voidmine(net.minecraft.world.level.block.Block... blocks) Begin to search for and mine the specified blocks.voidmineByName(int quantity, String... blocks) Begin to search for and mine the specified blocks until the number of specified items to get from the blocks that are mined.default voidmineByName(String... blocks) Begin to search for and mine the specified blocks.Methods inherited from interface baritone.api.process.IBaritoneProcess
displayName, displayName0, isActive, isTemporary, onLostControl, onTick, priority
-
Method Details
-
mineByName
Begin to search for and mine the specified blocks until the number of specified items to get from the blocks that are mined.- Parameters:
quantity- The total number of items to getblocks- The blocks to mine
-
mine
Begin to search for and mine the specified blocks until the number of specified items to get from the blocks that are mined. This is based on the first target block to mine.- Parameters:
quantity- The number of items to get from blocks minedfilter- The blocks to mine
-
mine
Begin to search for and mine the specified blocks.- Parameters:
filter- The blocks to mine
-
mineByName
Begin to search for and mine the specified blocks.- Parameters:
blocks- The blocks to mine
-
mine
Begin to search for and mine the specified blocks.- Parameters:
boms- The blocks to mine
-
mine
Begin to search for and mine the specified blocks.- Parameters:
boms- The blocks to mine
-
mine
Begin to search for and mine the specified blocks.- Parameters:
quantity- The total number of items to getblocks- The blocks to mine
-
mine
Begin to search for and mine the specified blocks.- Parameters:
blocks- The blocks to mine
-
cancel
Cancels the current mining task
-