Guest User

townrules

a guest
Mar 16th, 2015
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.78 KB | None | 0 0
  1. term.clear() --This clears the screen for the whole code
  2. term.setCursorPos(17, 1) --This sets the position for the following line
  3. term.write("Welcome to Megapolis") --Words in Between "these" shows up on the screen
  4. term.setCursorPos(1, 4)
  5. term.write("Town Rules")
  6. term.setCursorPos(1, 6)
  7. term.write("1. Respect Other Town Members")
  8. term.setCursorPos(1, 7)
  9. term.write("2. Stay Within Your Chunk Limits")
  10. term.setCursorPos(1, 8)
  11. term.write("3. Report ALL Major Lag In Town To Town Staff")
  12. term.setCursorPos(1, 9)
  13. term.write("4. Daily Tax is $100")
  14. term.setCursorPos(1, 10)
  15. term.write("5. Avoid The Use Of Lux Capacitors")
  16. term.setCursorPos(17, 13)
  17. term.write("Banned From The Town")
  18. term.setCursorPos(21, 14)
  19. print("Not Available") --Putting print("words") allows the > to go down a line
Advertisement
Add Comment
Please, Sign In to add comment