Advertisement
Guest User

startup

a guest
Sep 27th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.44 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(25,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. m.setTextColor(colors.green)
  17. print("FREE POWER IS AVAILABLE!")
  18. m.setTextColor(colors.white)
  19. print()
  20. print("In this town, it is currently:")
  21. print()
  22. print("- $75 per plot, $75 per plot, per 24 hours for plot tax. There is currently no resident tax, and don't plan on having one.")
  23. print("- You can claim up to 4 plots at this point. No need to deposit money into the town because it automatically takes it from your /bal.")
  24. print("- Keep an eye on your /bal and /towny time. Make money by using /vote and selling items on /market.")
  25. print()
  26. print("- As far as building goes, please no huge towers in the sky. However, you are free to dig to build to bedrock.")
  27. print("- There MUST be a 1 block border within the edge of your claim to allow for a walking path. But you are free to build underneath the path.")
  28. print("- Please keep all functional blocks and items within your house, or underground, once it's built. I'd like to keep the community looking nice! Farms, of course, are allowed outside.")
  29. print("- If you have any questions, please ask DroMania or any resident!")
  30.  
  31. if term.current then
  32. term.redirect(m.restoreTo)
  33. else
  34. term.restore()
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement