Created
October 8, 2018 21:29
-
-
Save LinuxPhreak/e78dd1a9e9e18af7ecf4d8c025a4ca15 to your computer and use it in GitHub Desktop.
Revisions
-
LinuxPhreak created this gist
Oct 8, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,41 @@ #!/usr/bin/env python3 import os import time #Intro here print("\033[1;33;49m .dBBBBP dBBBBBBP dBBBBBb dBBBBBb dBBBBBBP dBBBBBb dBBBP dBP dBP"); print("\033[1;33;49m BP BB dBP dBP d8P.dBP"); print("\033[1;33;49m `BBBBb dBP dBP BB dBBBBK dBP dBBBBK dBBP dBBBBP "); print("\033[1;33;49m dBP dBP dBP BB dBP BB dBP dBP BB dBP dBP BB "); print("\033[1;33;49m dBBBBP' dBP dBBBBBBB dBP dB' dBP dBP dB' dBBBBP dBP dBP "); print(""); print("\033[0;32;49m <------------------------------------------------------------------------->"); #pause screen for a few seconds then clear text time.sleep(10); os.system("printf '\033c'"); #Sub title to the game print("\033[0;36;49m .:: :: .:: .:::::::: .:: .:: "); print("\033[0;36;49m.:: .:: .:: .:: .:: .:: "); print("\033[0;36;49m .:: .:.: .: .:: .: .::: .:: .:: .:: .:: .:.: .: "); print("\033[0;36;49m .:: .:: .:: .:: .:: .:::::: .:: .: .:: .: .:: .:: "); print("\033[0;36;49m .:: .:: .:: .:: .:: .:: .::.::::: .::.::::: .:: .:: "); print("\033[0;36;49m.:: .:: .:: .:: .:: .:: .:: .::.: .: .:: "); print("\033[0;36;49m .:: :: .:: .:: .:::.::: .:: .::: .:::: .:::: .:: "); print("\033[1;33;49m .: .:: "); print("\033[1;33;49m .: :: .:: "); print("\033[1;33;49m .: .:: .::: .:: .:: .:: .::: .:: .:: .:: .::"); print("\033[1;33;49m .:: .:: .:: .:: .:: .:: .:: .: .:: .:: .: .:: .:: .:: "); print("\033[1;33;49m .:::::: .:: .:: .:: .:: .: .::.::::: .:: .:: .: .:: .::: "); print("\033[1;33;49m .:: .:: .:: .:: .:: .: .::.: .:: .: .:: .:: "); print("\033[1;33;49m.:: .:: .::: .:: .::: .:: .:: .:::: .::: .: .:: .:: "); print("\033[0;32;49m >----------------------------------------<"); print("\033[0;37;49m A Terminal Game Brought To You By Big Ben's Web Hosting"); print("\033[0;37;49m Created By Ben P. Dorsi-Todaro"); #pause screen for a few seconds then clear text time.sleep(10); os.system("printf '\033c'");