Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local modem = peripheral.wrap("left")
- local count = 0
- while true do
- os.pullEvent("redstone")
- if redstone.getInput("top") == true then
- count = count + 1
- modem.transmit(1, 1, count) -- channel, replychannel, message
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement