Advertisement
Guest User

Untitled

a guest
Feb 8th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.53 KB | None | 0 0
  1. local event = require("event")
  2. local fs = require("filesystem")
  3. local component = require("component")
  4. local term = require("term")
  5. local colors = require("colors")
  6. local computer = require("computer")
  7. local rs = component.redstone
  8. local sides = require("sides")
  9. local gpu = component.gpu
  10. local os = require("os")
  11. local running = true
  12.  
  13. function triggerOutput(other_color)
  14.   rs.setBundledOutput(sides.east, colors.black, 255)
  15.   os.sleep (6)
  16.   rs.setBundledOutput(sides.east, colors.black, 0)
  17.   os.sleep (1)
  18.   rs.setBundledOutput(sides.east, other_color, 255)
  19.   os.sleep (3)
  20.   rs.setBundledOutput(sides.east, other_color, 0)
  21. end
  22.  
  23. function main()
  24.   while True do
  25.     term.clear()
  26.     term.setCursor(1,1)
  27.     gpu.setResolution(30, 6)
  28.     gpu.setBackground(Blue)
  29.     gpu.setForeground(Yellow)
  30.     print("   Utility          Explorer")
  31.     print("")
  32.     print("   Combat           Ceremony")
  33.     print("")
  34.     print("   Ultimate         Botanical")
  35.  
  36.     local _,_,x,y = event.pull("touch")
  37.  
  38.     if x>=4 and y==1 and x<=10 then
  39.       triggerOutput(colors.blue)
  40.     elseif x>=21 and y==1 and x<=30 then
  41.       triggerOutput(colors.gray)
  42.     elseif x>=4 and y==3 and x<=10 then
  43.       triggerOutput(colors.green)
  44.     elseif x>=21 and y==3 and x<=30 then
  45.       triggerOutput(colors.purple)
  46.     elseif x>=4 and y==5 and x<=10 then
  47.       triggerOutput(colors.orange)
  48.     elseif x>=21 and y==5 and x<=30 then
  49.       triggerOutput(colors.red)
  50.     end
  51.  
  52.     -- always a good idea to sleep in a tight loop
  53.     os.sleep(1)
  54.   end
  55. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement