ADVANCED_QUICK_START.md
111 lines ยท 2.2 KB
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 |
| 12 | On each device: `print(os.getComputerID())` |
| 13 | |
| 14 | ### 3. Start Operation |
| 15 | **Step 1: Start Chunky Turtle** |
| 16 | ```lua |
| 17 | AdvancedChunkyTurtle |
| 18 | ``` |
| 19 | |
| 20 | **Step 2: Start Mining Turtle** |
| 21 | ```lua |
| 22 | AdvancedMiningTurtle |
| 23 | ``` |
| 24 | |
| 25 | **Step 3: Start Controller (on Computer)** |
| 26 | ```lua |
| 27 | AdvancedMiningController |
| 28 | ``` |
| 29 | |
| 30 | ## ๐ Quick Commands |
| 31 | |
| 32 | ### Basic Mining |
| 33 | ``` |
| 34 | Depth: 10 |
| 35 | Width: 5 |
| 36 | Height: 3 |
| 37 | Options: (none) |
| 38 | ``` |
| 39 | |
| 40 | ### Safe Mining |
| 41 | ``` |
| 42 | Depth: 20 |
| 43 | Width: 8 |
| 44 | Height: 4 |
| 45 | Options: layerbylayer |
| 46 | ``` |
| 47 | |
| 48 | ### Strip Mining |
| 49 | ``` |
| 50 | Depth: 50 |
| 51 | Width: -2 |
| 52 | Height: 3 |
| 53 | Options: 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 |
| 67 | During 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" |
| 76 | 1. Start mining turtle first: `AdvancedMiningTurtle` |
| 77 | 2. Check wireless modems |
| 78 | 3. Verify network connectivity |
| 79 | |
| 80 | ### "No chunky turtles found" |
| 81 | 1. Start chunky turtle first: `AdvancedChunkyTurtle` |
| 82 | 2. Check wireless modems |
| 83 | 3. 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 |