ADVANCED_QUICK_START.md

111 lines ยท 2.2 KB

Open raw

Copy & run

wget https://perlytiara.github.io/turtles.tips/raw/programs/perlytiara/tClear/ADVANCED_QUICK_START.md
1# Advanced Wireless Mining System - Quick Start
2
3## ๐Ÿš€ 5-Minute Setup
4
5### 1. Place Your Turtles
6```
7[Chunky] [Mining] โ† Your starting position
8```
9**Note:** Chunky turtle goes to the RIGHT of the mining turtle at SAME HEIGHT
10
11### 2. Get IDs
12On each device: `print(os.getComputerID())`
13
14### 3. Start Operation
15**Step 1: Start Chunky Turtle**
16```lua
17AdvancedChunkyTurtle
18```
19
20**Step 2: Start Mining Turtle**
21```lua
22AdvancedMiningTurtle
23```
24
25**Step 3: Start Controller (on Computer)**
26```lua
27AdvancedMiningController
28```
29
30## ๐Ÿ“‹ Quick Commands
31
32### Basic Mining
33```
34Depth: 10
35Width: 5
36Height: 3
37Options: (none)
38```
39
40### Safe Mining
41```
42Depth: 20
43Width: 8
44Height: 4
45Options: layerbylayer
46```
47
48### Strip Mining
49```
50Depth: 50
51Width: -2
52Height: 3
53Options: stripmine layerbylayer
54```
55
56## โš™๏ธ Parameters
57- **Depth**: Forward distance (โ‰ฅ1)
58- **Width**: Side distance (not -1,0,1)
59- **Height**: Up/down distance (not 0)
60
61## ๐Ÿ› ๏ธ Options
62- `layerbylayer` - Safer mining
63- `startwithin` - Start inside area
64- `stripmine` - Strip mining mode
65
66## ๐Ÿ“Š Monitoring
67During operation:
68- Press `s` for status
69- Press `p` to pause
70- Press `r` to resume
71- Press `q` to quit monitoring
72
73## ๐Ÿ”ง Troubleshooting
74
75### "No mining turtles found"
761. Start mining turtle first: `AdvancedMiningTurtle`
772. Check wireless modems
783. Verify network connectivity
79
80### "No chunky turtles found"
811. Start chunky turtle first: `AdvancedChunkyTurtle`
822. Check wireless modems
833. Operation can continue without chunky (not recommended)
84
85### "No modem found"
86- Attach wireless modem to device
87
88### Turtle breaks during mining
89- This should not happen with chunky pairing
90- Check chunky turtle is following
91- Restart both turtles if needed
92
93## ๐Ÿ“ Placement Rules
94- Chunky turtle goes to the **RIGHT** of mining turtle
95- **SAME HEIGHT** as mining turtle
96- **SAME FACING DIRECTION** as mining turtle
97- Clear path for chunky turtle to follow
98- Avoid lava and dangerous areas
99
100## โ›ฝ Fuel Tips
101- Keep both turtles fueled
102- Monitor fuel levels during operation
103- Have backup fuel ready
104
105## ๐Ÿ†˜ Emergency Stop
106- Press `Ctrl+T` on any device to stop
107- Both turtles will stop safely
108
109---
110**Need help?** See `ADVANCED_SYSTEM_GUIDE.md` for detailed instructions.
111