Computercraft-Turtle-Quarry.../Clarths-Instructions.md

55 lines
2.4 KiB
Markdown
Raw Normal View History

2024-01-23 16:38:00 -05:00
# Instructions
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
2024-01-23 17:06:15 -05:00
## Notes
2024-01-23 17:20:35 -05:00
- Steps 1-6 only needs done the 1st time you place down a turtle.
- Steps 5 & 6 are optional.
- Step 7 is what you run each time you place down a previsouly configured turtle.
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
2024-01-23 17:06:15 -05:00
## Usage
2024-01-23 17:20:35 -05:00
1. Place a turtle with a chest to the left of it.
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
2024-01-23 17:20:35 -05:00
2. R-click on the turtle.
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
2024-01-23 17:20:35 -05:00
3. Give the turtle a name.
2024-01-23 17:12:51 -05:00
`set name <name>`
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
2024-01-23 17:08:51 -05:00
4. Download the script to the turtle using:
2024-01-23 16:50:23 -05:00
```wget https://git.claytonia.net/Clarth/ComputerCraft-Turtle-Quarry-Script/raw/branch/main/quarry.lua quarry```
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
2024-01-23 17:12:51 -05:00
5. Create black-list
`edit no-mine-me`
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
2024-01-23 17:20:35 -05:00
6. Paste in blacklisted mats. This step is only needed it you want the turtle to drop specific blocks and not bring the back to the chest. I have edited the script and already added most common/useless blocks to the backlist. ***You can probably skip steps 5 & 6.***
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
2024-01-23 17:20:35 -05:00
Examples you might want to add to the blacklist:
Note: All of these are already blacklisted and will not be brought back to the chest.
2024-01-23 17:13:21 -05:00
```
minecraft:stone
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
minecraft:chest
minecraft:sand
minecraft:torch
ThermalExpansion:Sponge
ThermalFoundation:Storage
minecraft:diorite
minecraft:andesite
2024-01-23 17:13:21 -05:00
minecraft:granite
```
2024-01-23 17:12:51 -05:00
2024-01-23 17:20:35 -05:00
7. Run `quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true`
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
2024-01-23 17:20:35 -05:00
### Notes:
2024-01-23 17:12:51 -05:00
- This will mine everything, makes a big hole! `quarry -chest left -doRefuel true`
- Add '-startDown X' to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start.
`quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50`
- Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing.
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768.
2024-01-23 17:20:35 -05:00
It will look something like this:
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
2024-01-23 16:38:00 -05:00
```
Add Clarths-Instructions ==== Instructions ==== * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional * Step 6 is what you run each time you place down a previsouly configured turtle. 1. Place turtle, and a chest to the left of it. 2. R-click turtle 3. Set name <code>set name <name></code> 4a. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can download my version from github using: <code>wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry</code> <del>4a. Download quarry program from pastebin <code>pastebin get rpXRAZs4 quarry</code></del> 5a. Create black-list <code>edit no-mine-me</code> 5b. paste in blacklisted mats. This step is only needed it you want the turtle to disreguard stone/cobble. Use step 6a if you wish to have a blacklist. Example: <code> minecraft:stone minecraft:chest minecraft:sand minecraft:torch ThermalExpansion:Sponge ThermalFoundation:Storage minecraft:diorite minecraft:andesite minecraft:granite </code> 5c. Not nessisary for everyone, only need to do this if the blacklist feature fails for you. Skip this step unless you know what you're doing. The black list feature from step 5a stopped working sometime around 1.19.2 so I started hardcoding the black list into the script. You can add blocks to the blacklist in the script around line 768. Example: <code> --oreQuarry blacklist local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone", "minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate" </code> 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true</code> 6b. Mines everything, makes a big hole! <code>quarry -chest left -doRefuel true</code> Note: add -startDown X to the end of 6a if the turtle messes up and needs to start a few levels down. I have found this work better than the -restore argument. Example to -startDown 50 blocks from the start. <code>quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50</code>
2024-01-23 16:36:40 -05:00
--oreQuarry blacklist
local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone",
"minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate"
2024-01-23 17:12:51 -05:00
```