Advertisement
Alakazard12

help

Feb 3rd, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. local W, H = term.getSize()
  2.  
  3. local Title = Index:New("TextLabel")
  4. Title:Size(W, 1)
  5. Title:BackgroundColor(colors.red)
  6. Title:TextColor(colors.white)
  7. Title:Text("Help Page")
  8.  
  9. local Main = Index:New("TextLabel")
  10. Main:Size(W - 2, 1)
  11. Main:Position(2, 2)
  12. Main:BackgroundColor(colors.white)
  13. Main:TextColor(colors.black)
  14. Main:BackgroundColor(colors.white)
  15. Main:MultiLine(true)
  16. Main:Text("You have reached the help page. For a list of pages go to nova://pages.")
  17.  
  18. Index:Draw()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement