Advertisement
Guest User

startup

a guest
Sep 26th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.97 KB | None | 0 0
  1. local m = peripheral.wrap("top")
  2. if term.current then m.restoreTo = term.current() end
  3. m.clear()
  4.  
  5. term.redirect(m)
  6.  
  7. m.setCursorPos(20,1)
  8. m.setTextScale(1)
  9. m.setTextColor(colors.red)
  10. print("Welcome to BossLand!")
  11. m.setCursorPos(1,3)
  12. m.setTextColor(colors.white)
  13. print("Info:")
  14.  
  15. m.setCursorPos(1,5)
  16. print("- $75/plot + $75 plot tax/24 hours.")
  17. print("- No resident taxes!")
  18. print("- Up to 4 consecutive plots.")
  19. print("- Must allow a 1 block border for the public walking path.")
  20. print("- All functional blocks MUST be inside or underground, except farms.")
  21. print("- No extra tall buildings, but you can build down to bedrock.")
  22. print("- Keep your money in your /bal, because Towny will take it automatically. Do not deposit money into town bank, unless it is a donation.")
  23. print("- Use /towny time to know when taxes are taken.")
  24. print("- Make money using /vote and selling on /market.")
  25.  
  26. if term.current then
  27. term.redirect(m.restoreTo)
  28. else
  29. term.restore()
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement