antonsavov

Untitled

Feb 20th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. --tutorial 31 new game
  2. os.loadAPI('texthelp')
  3. local text = "To START A NEW GAME, walk onto the yellow platform. The game will begin shortly. Get you friends to join at the same time to play a game together."
  4. local c = 'blue'
  5. local highlights = {
  6. {word = 'START', color = c},
  7. {word = 'A', color = c},
  8. {word = 'NEW', color = c},
  9. {word = 'GAME,', color = c}
  10. }
  11. local monitor = peripheral.wrap('top')
  12. monitor.setTextScale(1.5)
  13. local w,h = monitor.getSize()
  14. texthelp.printToScreenColor(monitor,text,w,highlights,2,2, colors.white)
Add Comment
Please, Sign In to add comment