karelvysinka

Mining s EMC stavbou vysilac 2017

Aug 7th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.57 KB | None | 0 0
  1. local version =
  2. 1.0
  3. -- Program pro prijem zprav pres modem
  4. -- Pri zmene programu je treba na radku 2 zmenit verzi, aby se program automaticky aktualizoval
  5. -- local code je treba zmenit dle potreby
  6.  
  7. local code = "P9eEWRBB"
  8.  
  9. --check version
  10. term.clear()
  11. term.setCursorPos(1,1)
  12. print("Program loading...")
  13. print("Current version: "..version)
  14. local updateSite= http.get("http://pastebin.com/raw.php?i="..code)
  15. updateSite.readLine()
  16. local newVersion = updateSite.readLine()
  17. if tonumber(newVersion) > version then
  18.         print("Update required. Updating now...")
  19.         local updateSite = http.get("http://pastebin.com/raw.php?i="..code)
  20.         local siteFile = updateSite.readAll()
  21.         local writeFile = fs.open(shell.getRunningProgram(),"w")
  22.         writeFile.write(siteFile)
  23.         writeFile.close()
  24.         print("The program will now restart your computer.")
  25.         sleep(1)
  26.         os.reboot()
  27. end
  28.  
  29. function start()
  30.     while true do
  31.         print ("Program je aktuální")
  32.         print ("Program bezi...")
  33.         rednet.open("right")
  34.         print ("Oteviram modem right.")
  35.         print("Zadej prikaz: ")
  36.         local input = read()
  37.         print("Odesilam prikaz:")
  38.         print(input)
  39.         print("..pres modem...")
  40.         rednet.broadcast(input)
  41.         print("Prikaz odeslan...")
  42.     end
  43. end
  44.  
  45. function provedPrikaz(message)
  46.     if message == "turtledig" then
  47.         turtle.dig()
  48.     end
  49.    
  50.     if message == "reboot" then
  51.     print("Rebootuji computer")
  52.     os.reboot()
  53.     end
  54. print("Konec provadeni prikazu")
  55. end
  56.  
  57. start()
Add Comment
Please, Sign In to add comment