Advertisement
bugscz

Minecraft - Wireless server + item counter

Jun 15th, 2014
294
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.24 KB | None | 0 0
  1. local modem = peripheral.wrap("left")
  2. local count = 0
  3.  
  4. while true do
  5.   os.pullEvent("redstone")
  6.   if redstone.getInput("top") == true then
  7.     count = count + 1
  8.     modem.transmit(1, 1, count) -- channel, replychannel, message
  9.   end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement