Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.pullEvent=os.pullEventRaw
- term.clear()
- term.setCursorPos(1, 1)
- x, y = term.getSize()
- function cwrite(text, yp)
- cx = math.ceil((x/2)-(string.len(text)/2))
- term.setCursorPos(cx, yp)
- write(text)
- end
- function Graphics()
- term.setBackgroundColor(colors.lime)
- term.setTextColor(colors.white)
- cwrite("+---------------------+", 6)
- cwrite("| |", 7)
- cwrite("| |", 8)
- cwrite("| |", 9)
- cwrite("| |", 10)
- cwrite("| |", 11)
- cwrite("+---------------------+", 12)
- term.setTextColor(colors.purple)
- cwrite(" [1]PowerToggle", 8)
- cwrite("[2]Credits", 9)
- cwrite("[3]LogOut", 10)
- term.setCursorPos(1, 14)
- term.setTextColor(colors.white)
- term.setBackgroundColor(colors.black)
- end
- function OldColor()
- term.setTextColor(colors.white)
- term.setBackgroundColor(colors.black)
- end
- function NewColor()
- term.setBackgroundColor(colors.lime)
- term.setTextColor(colors.white)
- end
- function Box()
- term.clear()
- term.setCursorPos(1, 1)
- term.setBackgroundColor(colors.lime)
- cwrite("+--------------------+", 7)
- cwrite("| |", 8)
- cwrite("| |", 9)
- cwrite("| |", 10)
- cwrite("+--------------------+", 11)
- term.setBackgroundColor(colors.black)
- end
- function Credits()
- Box()
- term.setBackgroundColor(colors.lime)
- term.setTextColor(colors.blue)
- cwrite("Terminal Version 1.0", 9)
- sleep(2)
- term.setTextColor(colors.white)
- term.setBackgroundColor(colors.black)
- Box()
- term.setBackgroundColor(colors.lime)
- term.setTextColor(colors.orange)
- cwrite("Codeing: 8000", 9)
- sleep(2)
- term.setBackgroundColor(colors.black)
- term.setTextColor(colors.white)
- Box()
- term.setBackgroundColor(colors.lime)
- term.setTextColor(colors.cyan)
- cwrite("Assistant: Mickvvt", 9)
- sleep(2)
- term.setBackgroundColor(colors.lime)
- term.setTextColor(colors.white)
- term.setBackgroundColor(colors.black)
- shell.run("Terminal")
- end
- function Loading()
- Box()
- term.setBackgroundColor(colors.lime)
- term.setTextColor(colors.white)
- cwrite("Loading", 9)
- sleep(0.2)
- OldColor()
- Box()
- NewColor()
- cwrite("Loading.", 9)
- sleep(0.2)
- OldColor()
- Box()
- NewColor()
- cwrite("Loading..", 9)
- sleep(0.2)
- OldColor()
- Box()
- NewColor()
- cwrite("Loading...", 9)
- sleep(0.2)
- OldColor()
- term.setCursorPos(1, 13)
- end
- function PowerToggle()
- rs.setOutput("back", true)
- sleep(1)
- rs.setOutput("back", false)
- shell.run("Terminal")
- end
- Graphics()
- local input = read()
- if input == '1' then
- Loading()
- Loading()
- Loading()
- Loading()
- PowerToggle()
- elseif input == '3' then
- term.clear()
- term.setCursorPos(1, 1)
- shell.run("startup")
- elseif input == '2' then
- Credits()
- else
- term.clear()
- term.setCursorPos(1, 1)
- Box()
- cwrite("Unknown command", 9)
- sleep(2)
- shell.run("Terminal")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement