Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ponies = true
- while ponies do
- term.clear()
- term.setCursorPos(1, 1)
- print("welcome to the request station")
- print("please enter your username")
- username = read()
- if username == "tomtrein" then
- ponies = false
- break
- end
- term.clear()
- term.setCursorPos(1, 1)
- Print("What is your request?")
- body = read()
- its = username + " " + body
- local jobs = fs.open("jobs", "a")
- jobs.writeLine(its)
- jobs.close()
- end
Advertisement
Add Comment
Please, Sign In to add comment