Advertisement
Nullharp

yeet

May 24th, 2022
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.92 KB | None | 0 0
  1. print("Drone installation program engaged")
  2. sleep(1)
  3. fs.makeDir("system/")
  4. print("Created system directory")
  5. sleep(1)
  6.  
  7. shell.run("pastebin","get","JWWq1JZF","bootup_sequence.lua")
  8. fs.move("bootup_sequence.lua","system/bootup_sequence.lua")
  9. sleep(1)
  10. shell.run("pastebin","get","63jzXpZy","receiveCommand.lua")
  11. fs.move("receiveCommand.lua","system/receiveCommand.lua")
  12. sleep(1)
  13. shell.run("pastebin","get","MypYjxrL","receiveFile.lua")
  14. fs.move("receiveFile.lua","system/receiveFile.lua")
  15. sleep(1)
  16. shell.run("pastebin","get","hWurwqU5","turtleRemoteControl.lua")
  17. fs.move("turtleRemoteControl.lua","system/turtleRemoteControl.lua")
  18. sleep(1)
  19. shell.run("pastebin","get","6c7zHh8r","utility.lua")
  20. fs.move("utility.lua","system/utility.lua")
  21. sleep(1)
  22. shell.run("pastebin","get","WyCk7SVx","startup.lua")
  23. print("Final phase of drone install, enter a name.")
  24. print("Name: ")
  25. local name = read()
  26. shell.run("label","set",name)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement