Advertisement
Flaghacker

glasses API test program

May 24th, 2014
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.65 KB | None | 0 0
  1. local settings =
  2.     {
  3.     x1 = 0,
  4.     y1 = 0,
  5.     x2 = 100,
  6.     y2 = 100,
  7.     z = 1,
  8.     direction = 1,
  9.     displayColor = 0x00FF00,
  10.     groundColor = 0x0000FF,
  11.     opacity = 100,
  12.     maxValue = 200,
  13.     }
  14.  
  15. local settingsb =
  16.     {
  17.     x1 = 50,
  18.     y1 = 50,
  19.     x2 = 400,
  20.     y2 = 300,
  21.     z = 7,
  22.     direction = 1,
  23.     displayColor = 0xFF0000,
  24.     groundColor = 0xFFFF00,
  25.     opacity = 70,
  26.     maxValue = 30,
  27.     }
  28.  
  29. os.loadAPI("glass")
  30. glass.setSide("right")
  31.  
  32. local a = glass.createStatusBar(settings)
  33. a:setValue(40)
  34. a:setMaxValue(60)
  35. os.pullEvent("key")
  36. a:delete()
  37.  
  38. os.pullEvent("key")
  39.  
  40. local b = glass.createStatusBar(settingsb)
  41. b:setValue(16)
  42. b:setMaxValue(18)
  43. os.pullEvent("key")
  44. b:delete()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement