Advertisement
Guest User

armour.lua

a guest
Feb 8th, 2017
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.49 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.  
  12. function triggerOutput(other_color)
  13.   rs.setBundledOutput(sides.east, colors.black, 255)
  14.   os.sleep (6)
  15.   rs.setBundledOutput(sides.east, colors.black, 0)
  16.   os.sleep (1)
  17.   rs.setBundledOutput(sides.east, other_color, 255)
  18.   os.sleep (3)
  19.   rs.setBundledOutput(sides.east, other_color, 0)
  20. end
  21.  
  22. function main()
  23.   while true do
  24.     term.clear()
  25.     term.setCursor(1,1)
  26.     gpu.setResolution(30, 7)
  27.     gpu.setBackground(0x0033FF)
  28.     gpu.setForeground(0xFFFF00)
  29.     print("")
  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==2 and x<=10 then
  39.       triggerOutput(colors.blue)
  40.     elseif x>=21 and y==2 and x<=30 then
  41.       triggerOutput(colors.gray)
  42.     elseif x>=4 and y==4 and x<=10 then
  43.       triggerOutput(colors.green)
  44.     elseif x>=21 and y==4 and x<=30 then
  45.       triggerOutput(colors.purple)
  46.     elseif x>=4 and y==6 and x<=10 then
  47.       triggerOutput(colors.orange)
  48.     elseif x>=21 and y==6 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
  56.  
  57. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement