Advertisement
karelvysinka

Turtle chest ovládání příjmač 1.0

Jan 28th, 2017
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.44 KB | None | 0 0
  1. local version =
  2. 1.1
  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 = "WTLh9znV"
  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åA1lnåAD")
  32.         print ("Program bezi...")
  33.         rednet.open("right")
  34.         print ("Oteviram medem right.")
  35.         print("Cekam na zpravu...")
  36.         id, message  = rednet.receive(10000000000000)
  37.         print ("Computer ".. id .. " has sent us a message")
  38.         print ("The message is")
  39.         print (message)
  40.         provedPrikaz(message)
  41.     end
  42. end
  43.  
  44. function provedPrikaz(message)
  45.     if message == "as" then
  46.         turtle.suckUp()
  47.         turtle.dropDown()
  48.     end
  49.  
  50.  
  51. print("Konec provadeni prikazu")
  52. end
  53.  
  54. start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement