Advertisement
nokiapes

ic2

May 6th, 2024
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local component = require("component")
  2. local gpu = component.gpu
  3. local w,k = gpu.maxResolution()
  4. print (w, k)
  5. gpu.setResolution(18, 1)
  6.  
  7. gpu.setForeground(0x000000)
  8. gpu.fill(1, 1, 50, 25 , " ")
  9. gpu.setForeground(0x00FF19)
  10.  
  11. while true do
  12. gpu.set(2, 1, "Industrial Craft")
  13. os.sleep(10)
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement