Advertisement
Guest User

startup

a guest
Aug 21st, 2014
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. term.clear()
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9. textutils.slowPrint("System Pirater")
  10. sleep(2)
  11. shell.run("clear")
  12. local function centerText(text)
  13. local x,y = term.getSize()
  14. local x2,y2 = term.getCursorPos()
  15. term.setCursorPos(math.round((x/2) - (text:len()/2)), y2)
  16. write(text)
  17. end
  18.  
  19. centerText("Bienvenue Maitre")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement