Advertisement
QuicksilverBoy

Name tag

Feb 8th, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.46 KB | None | 0 0
  1. component = require('component')
  2. event = require('event')
  3.  
  4. gpu = component.gpu
  5.  
  6. text = 'НАЗВАНИЕ СЮДА!!!' --не стирай кавычки
  7.  
  8. gpu.setForeground(0x0000FF) --Цвет букв
  9. gpu.setBackground(0) --Цват фона
  10.  
  11. x = #text / 2
  12.  
  13. gpu.setResolution(x + 1, 1)
  14. gpu.set(1, 1, text)
  15.  
  16. b = 0
  17.  
  18. while not (b == 113) do
  19.   _, _, b = event.pull('key_down')
  20. end
  21.  
  22. gpu.setResolution(80, 25)
  23. gpu.setForeground(0xFFFFFF)
  24. gpu.setBackground(0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement