Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- config --
- local user = "8000sudios"
- local pass = "minecraft"
- local side = "right" -- the side that the modem is on --
- -- end of config --
- local computer_id = os.getComputerID()
- term.clear()
- print("Running password server 1.0")
- print("computer id: "..computer_id)
- rednet.open(side)
- id, message = rednet.receive()
- if message == 103 then
- print("send1")
- rednet.send(id, 111)
- else
- os.reboot()
- end
- local id2, suser = rednet.receive()
- if suser == user then
- print("send2")
- rednet.send(id2, "122")
- else
- rednet.send(id2, "121")
- os.reboot()
- end
- local id3, spass = rednet.receive()
- if spass == pass then
- rednet.send(id3, "132")
- os.reboot()
- else
- rednet.send(id3, "131")
- os.reboot()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement