Update Clarths-Instructions.md
This commit is contained in:
parent
f97631ec33
commit
d18425f766
|
@ -11,23 +11,18 @@
|
||||||
2. R-click turtle
|
2. R-click turtle
|
||||||
|
|
||||||
3. Set name
|
3. Set name
|
||||||
```set name <name>```
|
`set name <name>`
|
||||||
|
|
||||||
4. Download the script to the turtle using:
|
4. Download the script to the turtle using:
|
||||||
```wget https://git.claytonia.net/Clarth/ComputerCraft-Turtle-Quarry-Script/raw/branch/main/quarry.lua quarry```
|
```wget https://git.claytonia.net/Clarth/ComputerCraft-Turtle-Quarry-Script/raw/branch/main/quarry.lua quarry```
|
||||||
|
|
||||||
|
5. Create black-list
|
||||||
|
`edit no-mine-me`
|
||||||
|
|
||||||
<del>4. (a) Download quarry program from pastebin
|
6. 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.
|
||||||
```pastebin get rpXRAZs4 quarry```</del>
|
|
||||||
|
|
||||||
5a. Create black-list
|
|
||||||
```edit no-mine-me```
|
|
||||||
|
|
||||||
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:
|
Example:
|
||||||
```
|
``` minecraft:stone
|
||||||
minecraft:stone
|
|
||||||
minecraft:chest
|
minecraft:chest
|
||||||
minecraft:sand
|
minecraft:sand
|
||||||
minecraft:torch
|
minecraft:torch
|
||||||
|
@ -35,11 +30,19 @@ ThermalExpansion:Sponge
|
||||||
ThermalFoundation:Storage
|
ThermalFoundation:Storage
|
||||||
minecraft:diorite
|
minecraft:diorite
|
||||||
minecraft:andesite
|
minecraft:andesite
|
||||||
minecraft:granite
|
minecraft:granite```
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
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.
|
7. Run quarry
|
||||||
|
|
||||||
|
|
||||||
|
Notes:
|
||||||
|
|
||||||
|
- This will skip everything on the blacklist and only brings ores back to the chest. `quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true`
|
||||||
|
- 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.
|
||||||
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.
|
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:
|
Example:
|
||||||
|
|
||||||
|
@ -48,15 +51,3 @@ Example:
|
||||||
local blacklist = { "minecraft:air", "minecraft:bedrock", "minecraft:cobblestone", "minecraft:dirt", "minecraft:ice", "minecraft:ladder", "minecraft:netherrack", "minecraft:tuff", "minecraft:sand", "minecraft:sandstone",
|
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"
|
"minecraft:snow", "minecraft:snow_layer", "minecraft:stone", "minecraft:gravel", "minecraft:grass", "minecraft:torch", "minecraft:diorite", "minecraft:andesite", "minecraft:granite", "byg:soapstone", "minecraft:cobbled_deepslate"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
6. Run quarry
|
|
||||||
|
|
||||||
6a. This will skip everything on the blacklist and only brings ores back to the chest.
|
|
||||||
```quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true```
|
|
||||||
6b. This will mine everything, makes a big hole!
|
|
||||||
```quarry -chest left -doRefuel true```
|
|
||||||
|
|
||||||
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.
|
|
||||||
```quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50```
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue