Advertisement
Guest User

startup

a guest
Aug 23rd, 2014
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.53 KB | None | 0 0
  1. local pos = 18
  2.  
  3. monitor = peripheral.wrap("back")
  4. monitor.clear()
  5. monitor.setBackgroundColour(16384)
  6. monitor.setTextColour(1)
  7. monitor.setTextScale(5)
  8.  
  9. while true do
  10.  
  11.  
  12.  if pos==-26 then
  13.  
  14.   pos = 50
  15.  end
  16.  
  17.  monitor.clear()
  18.  monitor.setCursorPos(pos,4)
  19.  monitor.write("FTB-LITE.DE")
  20.  
  21.  monitor.setCursorPos(pos,5)
  22.  monitor.write("Wilkommen bei der Beast Arena")
  23.    
  24.  monitor.setCursorPos(pos,6)
  25.  monitor.write("")
  26.  
  27.  
  28.  monitor.setCursorPos(pos,7)
  29.  monitor.write("")
  30.  
  31.  
  32.  pos = pos-1
  33.  
  34.  os.sleep(0.3)
  35.  
  36.  end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement