Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. --This is my code for Auto-Spawner I am building
  2.  
  3. --verison of spawner
  4. ver = "version 1.0"
  5.  
  6.  
  7.  
  8. ----This is the function to center text
  9.  
  10.  
  11. local w, h = term.getSize()
  12.  
  13. --function to centertext
  14.  
  15. local function cenText(text,y)
  16.     math.floor(w-#text/2)
  17.     term.print(text)
  18. end
  19.  
  20. cenText(ver ,1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement