startup.lua
7 lines · 182 B
Auto-start eDig client on turtle boot
Copy & run
wget https://perlytiara.github.io/turtles.tips/raw/programs/perlytiara/eDig/startup.lua
| 1 | -- startup.lua - Auto-start eDig client on turtle boot |
| 2 | if turtle then |
| 3 | print("Starting eDig client...") |
| 4 | shell.run("eDig/client") |
| 5 | else |
| 6 | print("Not a turtle - startup skipped") |
| 7 | end |