Advertisement
Guest User

farms

a guest
May 19th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.92 KB | None | 0 0
  1. loadup = function()
  2.   os.loadAPI("touchpoint")
  3.   print("Touchpoint API Loaded")
  4.   sleep(1)
  5.   term.clear()
  6.   term.setCursorPos(1,1)
  7. end
  8.  
  9. loadup()
  10.  
  11. local t = touchpoint.new("top")
  12.  
  13. function BC()
  14.   t:toggleButton("Bread and Carrots")
  15.   if rs.getOutput("left") == true then
  16.     rs.setOutput("left", false)
  17.   else
  18.     rs.setOutput("left", true)
  19.   end
  20. end
  21.  
  22. function WA()
  23.   t:toggleButton("Wood and Apples")
  24.   if rs.getOutput("right") == true then
  25.     rs.setOutput("right", false)
  26.   else
  27.     rs.setOutput("right", true)
  28.   end
  29. end
  30.  
  31. function SU()
  32.   t:toggleButton("Sugarcane")
  33.   rednet.open("bottom")
  34.   rednet.send(35, "SU")
  35. end
  36.  
  37.  
  38. buttonLoads = function()
  39.   t:add("Bread and Carrots", BC, 2, 2, 20, 5, colors.red, colors.lime)
  40.   t:add("Wood and Apples", WA, 2, 7, 20, 10, colors.red, colors.lime)
  41.   t:add("Sugarcane", SU, 2, 12, 20, 15, colors.red, colors.lime)
  42.   t:draw()
  43. end
  44.  
  45. buttonLoads()
  46. t:run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement