Advertisement
Marlingaming

CC Tweaked - Blood Path Dead Strings - Base

Feb 10th, 2022
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. local MCharacterName = "n"
  2. local Stage = 0
  3.  
  4. local function CenterText(y,text)
  5. local x = math.floor((w - string.len(text)) /2)
  6. term.setCursorPos(x,y)
  7. term.clearLine()
  8. term.write(text)
  9. end
  10.  
  11. local function Clear()
  12. term.clear()
  13. term.setCursorPos(1,1)
  14. end
  15.  
  16. function LoadFile()
  17.  
  18. end
  19.  
  20. function Menu()
  21. Clear()
  22. CenterText(1,"-==Menu==-")
  23.  
  24. end
  25.  
  26. LoadFile()
  27. Menu()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement