Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- textTable={
- "NanoTech custom programs.",
- "",
- "NanoTech Offers you programs written specificly for you",
- "If you Want a custom program made for you,",
- "please contact our staff when they are ingame"
- "Our staff roster can be found on the monitor left of you",
- "Programs cost different ammounts of money depending ",
- "on the file size of the program",
- "",
- "Costs:",
- "For less than 500 lines costs are $0.50 per line",
- "For above 500 lines costs are $1.00 per line",
- "Anything above 1000 lines will have custom costs.",
- }
- m=peripheral.wrap("top")
- s=peripheral.wrap("right")
- function writeText()
- m.setCursorPos(1,1)
- m.clear()
- m.setTextScale(1)
- --[[nearPlayers=s.getPlayerNames()
- --print(nearPlayers)
- --print(nearPlayers[1])
- if nearPlayers[1]~=nil then
- print(nearPlayers)
- nearPlayers=nearPlayers[1]
- m.write("Hello ")
- m.setTextColor(32)
- m.write(nearPlayers)
- m.setTextColor(1)
- end]]
- for line,text in ipairs(textTable) do
- m.setCursorPos(1,line)
- m.write(text)
- end
- end
- while true do
- writeText()
- sleep(1)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement