startup.lua

7 lines · 182 B

Open raw

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
2if turtle then
3 print("Starting eDig client...")
4 shell.run("eDig/client")
5else
6 print("Not a turtle - startup skipped")
7end