Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. mon = peripheral.wrap("top") --Screen Side
  2. mon.setTextScale(2)           --Text Size
  3. strtpos = 24                 --Start position on screen
  4. speed = 0.2                   --Scroll Speed (Seconds)
  5. text1 = "Welcome to Infinity USA. Please type /rules for more information"    
  6. text2 = "Claims!, ctrl+ click on the link for help when it comes up"
  7. text3 = "Market! Do '/warp Market'to go there. '//rg rent' for space!"
  8. text4 = "Get money!Three ways to get money, '/sell hand' or sell claim blocks or shop."
  9. text5 = "Chestshop! We are using chestshop for player shops, click link when it comes up"
  10. text6 = "Banned items are in the rules...and so are the rules XD"
  11. text7 = "If you need help with command type /help then the command."
  12. Text8 = "If you need to know commands, type /help"
  13. Text9 = "o.0"
  14. Text10= "Wat?"
  15.  
  16. pos = strtpos
  17. poslimit = -24 - strtpos
  18.  
  19. while true do
  20.  mon.setBackgroundColor(colors.white)
  21.  mon.setTextColor(colors.blue)
  22.  mon.setCursorPos(pos, 1)
  23.  mon.write(text1)
  24.  mon.setCursorPos(pos, 2)
  25.  mon.write(text2)
  26.  mon.setCursorPos(pos, 3)
  27.  mon.write(text3)
  28.  mon.setCursorPos(pos, 4)
  29.  mon.write(text4)
  30.  mon.setCursorPos(pos, 5)
  31.  mon.write(text5)
  32.  mon.setCursorPos(pos, 6)
  33.  mon.write(text6)
  34.  mon.setCursorPos(pos, 7)
  35.  mon.write(text7)
  36.  mon.setCursorPos(pos, 8)
  37.  mon.write(text8)
  38.  mon.setCursorPos(pos, 9)
  39.  mon.write(text9)
  40.  mon.setCursorPos(pos, 10)
  41.  mon.write(text10)
  42.  sleep(speed)
  43.  mon.clear()
  44.  
  45.  if pos == poslimit then
  46.   pos = strtpos
  47.  else
  48.   pos = pos - 1
  49.  end
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement