Advertisement
SolidSnake96AS

Draw

Sep 5th, 2013
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. local w,h,s;
  2. term.clear()
  3. term.setTextColor(colors.yellow)--Usa colors.NOMECOLORE
  4. term.setTextSize(1)
  5.  
  6. w,h=term.getSize()
  7. s="TESTO"--Modifica il testo tra virgolette
  8.  
  9. while (true)
  10. do
  11.   term.clear()
  12.   term.setCursorPos(w/2-(string.len(s)/2),h/2)
  13.   print(s)
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement