Advertisement
Guest User

Untitled

a guest
Oct 8th, 2015
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. local pos = 18
  2.  
  3. mon = peripheral.wrap("back")
  4. mon.clear()
  5. mon.setBackgroundColor(colors.white)
  6. mon.setTextColor(colors.black)
  7. mon.setTextScale(3)
  8.  
  9. while true do
  10.  
  11. if pos==-22 then -- pos==-NUMBER to make it even depending on length of message
  12. pos = 18
  13. end
  14.  
  15. mon.clear()
  16. mon.setCursorPos(1,1)
  17. mon.write("Tree's Shack")
  18. mon.setCursorPos(pos,2)
  19. mon.write("Cheap Items | Rentable Power")
  20. pos = pos-1
  21.  
  22. os.sleep(0.15)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement