Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Boot animation code for ComputerCraft
- -- Function to clear the screen
- function clearScreen()
- term.clear()
- term.setCursorPos(1, 1)
- end
- -- Function to display the boot animation
- function bootAnimation()
- clearScreen()
- print(" _______ _______ _______ ")
- sleep(0.5)
- clearScreen()
- print(" / || || |")
- print(" / ____|| ____||_ _|")
- sleep(0.5)
- clearScreen()
- print(" _____ | _____ | _____ |")
- print(" |_____| ||_____| ||_____| |")
- sleep(0.5)
- clearScreen()
- print(" _______ _______ _______ ")
- print("| || || |")
- sleep(0.5)
- clearScreen()
- print(" _____ | _____ | _____ ")
- print("|_____| ||_____| ||_____|")
- sleep(0.5)
- clearScreen()
- print(" _________________________ ")
- print("| |")
- print("| GALAXY |")
- print("| |")
- sleep(1)
- clearScreen()
- print(" _________________________ ")
- print("| |")
- print("| POWERED BY ANDROID |")
- print("| |")
- sleep(1)
- clearScreen()
- end
- -- Main function to initiate the boot process
- function main()
- bootAnimation()
- -- Add code to start the system or execute other functionalities
- end
- -- Start the boot process
- main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement