Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- modem = peripheral.wrap("back")
- term.clear()
- channel = 69
- modem.open(channel)
- local Main = false
- while true do
- term.clear()
- term.setCursorPos(1, 1)
- print("computer id: ".. os.getComputerID())
- print("modem-kanaal: "..channel)
- term.setCursorPos(1, 4)
- print("Creeper-on / Creeper-off")
- print("Witch-on / Witch-off")
- print("Blaze-on / Blaze-off")
- print("Wither-on / Wither-off")
- term.setCursorPos(1, 10)
- print("What spawner to toggle?: ")
- term.setCursorPos(1, 11)
- input = read()
- modem.transmit(32,32, input)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement