Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --local request = http.get("http://88.21.50.163:8278")
- bandera = true
- while bandera
- do
- request = http.get("")
- txt = request.readAll()
- print(txt)
- if txt == "Salir"
- then
- bandera = false
- elseif txt == "PicarRecto"
- then
- turtle.dig()
- elseif txt == "PicarArriba"
- then
- turtle.digUp()
- elseif txt == "PicarAbajo"
- then
- turtle.digDown()
- elseif txt == "Recto"
- then
- turtle.forward()
- elseif txt == "GiraDerecha"
- then
- turtle.turnRight()
- elseif txt == "GiraIzquierda"
- then
- turtle.turnLeft()
- elseif txt == "Abajo"
- then
- turtle.down()
- elseif txt == "Arriba"
- then
- turtle.up()
- end
- end
- request.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement