Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Timeblast game #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions timeblast.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
iimport sys, select, os, time
from random import randint
from termios import tcflush, TCIOFLUSH
limit = 600
random_number = randint(0,9)
success = False
print("What level are you at?")
print("1. Beginner")
print("2. Intermediate")
print("3. Motherfucker")
level = int(input(""))

if(level == 1):
timer = 30
chances = 5
elif(level == 2):
timer = 20
chances = 3
else:
timer = 10
chances = 1
while(chances and not success):
for i in range(limit, 1, -1):
os.system('cls' if os.name == 'nt' else 'clear')

print("Your lucky number is " + '\x1b[9;30;45m' + " " + str(random_number) + " " + '\x1b[0m')

print("Press ENTER => " + '\x1b[1;30;47m' + " " + str(i) + " " + '\x1b[0m')
if sys.stdin in select.select([sys.stdin], [], [], 0)[0]:
tcflush(sys.stdin, TCIOFLUSH)
break
i += 1
time.sleep(timer/100)

chances = chances - 1
if i%10 == random_number:
print('\x1b[2;35;47m' + "You are the hero they need but don't deserve" + '\x1b[0m')
success = True
else:
print('\x1b[1;32;41m'+ "***BOOOOOOOOOOMMMM***" + '\x1b[0m')
if(chances):
print("Chances Remaining are " + '\x1b[1;37;40m' + " " + str(chances - 1) + " " + '\x1b[0m')
print("Game would restart in 3 seconds")
time.sleep(3)
# for i in range(3,1,-1):