Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local version =
- 1.1
- -- Program pro prijem zprav pres modem
- -- Pri zmene programu je treba na radku 2 zmenit verzi, aby se program automaticky aktualizoval
- -- local code je treba zmenit dle potreby
- local code = "WTLh9znV"
- --check version
- term.clear()
- term.setCursorPos(1,1)
- print("Program loading...")
- print("Current version: "..version)
- local updateSite= http.get("http://pastebin.com/raw.php?i="..code)
- updateSite.readLine()
- local newVersion = updateSite.readLine()
- if tonumber(newVersion) > version then
- print("Update required. Updating now...")
- local updateSite = http.get("http://pastebin.com/raw.php?i="..code)
- local siteFile = updateSite.readAll()
- local writeFile = fs.open(shell.getRunningProgram(),"w")
- writeFile.write(siteFile)
- writeFile.close()
- print("The program will now restart your computer.")
- sleep(1)
- os.reboot()
- end
- function start()
- while true do
- print ("Program je aktuåA1lnåAD")
- print ("Program bezi...")
- rednet.open("right")
- print ("Oteviram medem right.")
- print("Cekam na zpravu...")
- id, message = rednet.receive(10000000000000)
- print ("Computer ".. id .. " has sent us a message")
- print ("The message is")
- print (message)
- provedPrikaz(message)
- end
- end
- function provedPrikaz(message)
- if message == "as" then
- turtle.suckUp()
- turtle.dropDown()
- end
- print("Konec provadeni prikazu")
- end
- start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement