Update Clarths-Instructions.md
This commit is contained in:
parent
470628c7df
commit
5a86993b49
|
@ -1,16 +1,16 @@
|
||||||
# Instructions
|
# Instructions
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
- Steps 1-4 only needs done the 1st time you place down a turtle.
|
- Steps 1-6 only needs done the 1st time you place down a turtle.
|
||||||
- Step 5 is optional
|
- Steps 5 & 6 are optional.
|
||||||
- Step 6 is what you run each time you place down a previsouly configured turtle.
|
- Step 7 is what you run each time you place down a previsouly configured turtle.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
1. Place turtle, and a chest to the left of it.
|
1. Place a turtle with a chest to the left of it.
|
||||||
|
|
||||||
2. R-click turtle
|
2. R-click on the turtle.
|
||||||
|
|
||||||
3. Set name
|
3. Give the turtle a name.
|
||||||
`set name <name>`
|
`set name <name>`
|
||||||
|
|
||||||
4. Download the script to the turtle using:
|
4. Download the script to the turtle using:
|
||||||
|
@ -19,9 +19,10 @@
|
||||||
5. Create black-list
|
5. Create black-list
|
||||||
`edit no-mine-me`
|
`edit no-mine-me`
|
||||||
|
|
||||||
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.
|
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.***
|
||||||
|
|
||||||
Example:
|
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.
|
||||||
```
|
```
|
||||||
minecraft:stone
|
minecraft:stone
|
||||||
minecraft:chest
|
minecraft:chest
|
||||||
|
@ -35,18 +36,17 @@ minecraft:granite
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
7. Run `quarry`
|
7. Run `quarry -chest left -oreQuarry true -blacklist no-mine-me.lua -doRefuel true`
|
||||||
|
|
||||||
|
|
||||||
Notes:
|
### 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`
|
- 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.
|
- 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`
|
||||||
- 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.
|
- 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:
|
It will look something like this:
|
||||||
|
|
||||||
```
|
```
|
||||||
--oreQuarry blacklist
|
--oreQuarry blacklist
|
||||||
|
|
Loading…
Reference in New Issue