Advertisement
rungholt

breaker

Aug 15th, 2021 (edited)
1,080
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.19 KB | None | 0 0
  1. local modem = peripheral.find("modem")
  2. modem.open(3)
  3. while true do
  4.    input = read()
  5.    modem.transmit(1,3, input)
  6.    if input == "exitbuck" then
  7.       break
  8.    end
  9. end
  10. modem.close(3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement