Advertisement
Lucrecio

Turtle Lamp Switch

Apr 16th, 2022
1,309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. local modem = peripheral.wrap("left")
  2. modem.open(10)
  3. ison = false
  4.  
  5. while true do    
  6.     local event,side,channel,replychannel,message,distance = os.pullEvent("modem_message")
  7.    
  8.     if message==true then
  9.         ison = not ison
  10.         redstone.setOutput("front",not ison)
  11.     end
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement