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