Advertisement
Guest User

giveFood

a guest
Jun 27th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.54 KB | None | 0 0
  1. os.unloadAPI("button")
  2.  
  3. os.loadAPI("button")
  4.  
  5. m = peripheral.wrap("top")
  6.  
  7. m.clear()
  8. rednet.open("right")
  9.  
  10. function fillTable()
  11.   button.setTable("Steak",steak,10,20,3,5)
  12.   button.setTable("Porkchop",porkchop,22,32,3,5)
  13.   button.setTable("Apple",apple,34,44,3,5)
  14.   button.screen()
  15. end
  16. function getClick()
  17.   event,side,x,y = os.pullEvent("monitor_touch")
  18.   button.checkxy(x,y)
  19. end
  20.  
  21. function Steak()
  22.   button.toggleButton()
  23.   rednet.send(20,"Steak")
  24.   sleep(1)
  25.   button.toggleButton()
  26. end
  27.  
  28. fillTable()
  29. while true do getClick() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement