Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local version =
- 3.0
- -- 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 = "whvwLXBh"
- --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ální")
- 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)
- turtle.select(1)
- if message == "5491" and turtle.getItemDetail().name == "IC2:item.itemRubber" then
- turtle.dropDown(64)
- end
- end
- --start programu
- local a=0
- while true do
- start()
- a=a+1
- --print(a)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement