Advertisement
VaMinion

clock_transmit

Nov 14th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. -- Assumes the wireless modem is on the left side of the computer.
  2. local wifi = peripheral.wrap("left")
  3. local mon = peripheral.wrap("top")
  4.  
  5. repeat
  6.   wifi.transmit(1, 2, os.time().." on day "..os.day())
  7.   term.clear()
  8.   print(os.time().." on day "..os.day())
  9.   os.sleep(49)
  10. until 1 == 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement