Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local W, H = term.getSize()
- local Title = Index:New("TextLabel")
- Title:Size(W, 1)
- Title:BackgroundColor(colors.red)
- Title:TextColor(colors.white)
- Title:Text("Help Page")
- local Main = Index:New("TextLabel")
- Main:Size(W - 2, 1)
- Main:Position(2, 2)
- Main:BackgroundColor(colors.white)
- Main:TextColor(colors.black)
- Main:BackgroundColor(colors.white)
- Main:MultiLine(true)
- Main:Text("You have reached the help page. For a list of pages go to nova://pages.")
- Index:Draw()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement