From 8bfb8cac0b8e1b1eee0ec707403326b7b2485f3b Mon Sep 17 00:00:00 2001 From: Clarth Date: Tue, 23 Jan 2024 16:38:00 -0500 Subject: [PATCH] Update Clarths-Instructions --- Clarths-Instructions | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Clarths-Instructions b/Clarths-Instructions index 9e60d80..593c6d6 100644 --- a/Clarths-Instructions +++ b/Clarths-Instructions @@ -1,4 +1,4 @@ -==== Instructions ==== +# Instructions * Steps 1-4 only needs done the 1st time you place down a turtle. * Step 5 is optional @@ -9,22 +9,22 @@ 2. R-click turtle 3. Set name -set name +```set name ``` 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: -wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry +```wget https://gist.githubusercontent.com/claythegamer/c173951e9ea7fd7f0ccb7cdb7fd05efa/raw/7caa2eb410739b03f436dbd40716f9ec7241571c/gistfile1.txt quarry``` 4a. Download quarry program from pastebin -pastebin get rpXRAZs4 quarry +```pastebin get rpXRAZs4 quarry``` 5a. Create black-list -edit no-mine-me +```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: - +``` minecraft:stone minecraft:chest minecraft:sand @@ -35,26 +35,26 @@ minecraft:diorite minecraft:andesite 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. 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: - +``` --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" - + ``` 6. Run quarry 6a. Skips everything on the blacklist and only brings ores back to the chest. -quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true +```quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true``` 6b. Mines everything, makes a big hole! -quarry -chest left -doRefuel true +```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 +```quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true -startDown 50```