Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- FUNCIONAMIENTO / OPERATION
- -- Spanish
- --------------------------------------------------------------------------------
- -- 1º Si hay presente un moden, activa la rednet en el 1º lado que lo encuentre
- -- 2º si no hay un modem, pero esta activa la rednet, lo desactiva
- -- 3º Si no hay un modem, sale del programa
- --------------------------------------------------------------------------------
- -- English
- --------------------------------------------------------------------------------
- -- 1º If present a moden, active it in the 1st RedNet side who finds
- -- 2º if no modem, but is RedNet activated, it disabled
- -- 3º If no modem, exit the program
- --------------------------------------------------------------------------------
- -- Limpia la pantalla
- -- clean the screen
- function Limpiar()
- term.clear()
- term.setCursorPos(1,1)
- end
- -- Escribe el texto letra a letra
- -- Write the text letter by letter
- sp2 = textutils.slowPrint
- -- English / Spanish translate
- local translate = {["top"] = "Arriba", ["bottom"] = "Abajo", ["left"] = "Izquierda", ["right"] = "Derecha", ["front"] = "Delante", ["back"] = "Detras"}
- -- Funcion para conectar RedNet
- -- Function to connect RedNet
- function ConetarRedNet()
- for side, label in ipairs(rs.getSides()) do
- Limpiar()
- print("looking modem")
- -- print("Buscando modem")
- term.setCursorPos(15,1)
- sp2(".............")
- if peripheral.isPresent(label) then
- if peripheral.getType(label) == "modem" then
- rednet.open(label)
- lado = translate[label]
- Limpiar()
- print("Modem enabled: ", lado)
- -- print("Modem activado: ", lado)
- sp2("Closing program ....")
- -- sp2("Cerrando programa....")
- sleep(2)
- Limpiar()
- return(true)
- end
- end
- if not peripheral.isPresent(label) then
- if rednet.isOpen(label) == true then
- lado = translate[label]
- Limpiar()
- print("Active RedNet on: "..lado..", but is not a modem added in that position, add one")
- -- print("RedNet activo en: "..lado..", pero no se encuentra añadido un modem en esa posición, añada uno.")
- sleep(3)
- sp2("Closing connection RedNet....")
- -- sp2("Cerrando conexión a RedNet....")
- rednet.close(label)
- sleep(3)
- Limpiar()
- return(true)
- end
- end
- end
- sp2("No modem, no connection, add one to the device")
- --sp2("No hay modem, imposible conexion, añada uno al dispositivo")
- sleep(4)
- Limpiar()
- return(false)
- end
- ConetarRedNet()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement