Advertisement
MrBartek

Administratorzy - TechCraft

Aug 22nd, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.58 KB | None | 0 0
  1. monitor = peripheral.wrap("monitor_6")
  2. monitor.clear()
  3. monitor.setCursorPos(1,1)
  4.  
  5. function newLine()
  6.   local _,cY= monitor.getCursorPos()
  7.   monitor.setCursorPos(1,cY+1)
  8. end
  9.  
  10. while true do
  11.     monitor.write("================[Administratorzy]=================")
  12.     newLine()
  13.     monitor.write("Wlasciciel:")
  14.     newLine()
  15.     monitor.write("     MrBartek21")
  16.     newLine()
  17.     newLine()
  18.     monitor.write("Administratorrzy:")
  19.     newLine()
  20.     monitor.write("     Tim")
  21.     newLine()
  22.     monitor.write("     Suryss")
  23.     newLine()
  24.     monitor.write("     Fanatyk555")
  25.     newLine()
  26.     monitor.write("     KubaPlayer1")
  27.     newLine()
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement