Skip to content

Commit 5b26d31

Browse files
v1.5-alpha.2 upload
1 parent 2156035 commit 5b26d31

File tree

13 files changed

+6340
-0
lines changed

13 files changed

+6340
-0
lines changed

v1.5-alpha.2/clicker/gui.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
def clicker_start_game():
3+
pass

v1.5-alpha.2/launcher.py

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
import time, os, random
2+
from mrmine.main_script import mrmine_start_game, m_ms_initialize
3+
from mrmine.keypress_detector import m_kd_initialize
4+
from mrmine.gui import m_g_initialize
5+
from clicker.main_script import clicker_start_game
6+
from mrmine_integrity import m_ic_initialize
7+
from colorama import Fore as color
8+
os.system('clear')
9+
m_version='v1.5-alpha.2'
10+
print(f'''
11+
You are on version {m_version}.
12+
To see all versions go to:
13+
https://github.com/XtheGxmerz0/coolmathgames''')
14+
time.sleep(0.75)
15+
print('''
16+
Enter the ID for the game you would like to play.
17+
1. Mr. Mine | [v1.5-alpha.2, Work-In-Progress]
18+
2: Clicker Game | [v1.0, Work-In-Progress]''')
19+
game=input(" > ")
20+
try:
21+
game=int(game)
22+
except Exception:
23+
print("Invalid ID.")
24+
exit()
25+
if game==1:
26+
print("Starting Mr. Mine...")
27+
time.sleep(0.5)
28+
print("Loading Game...")
29+
time.sleep(random.uniform(0.5, 1.5))
30+
os.system('clear')
31+
print('Initializing main script...')
32+
m_ms_initialize()
33+
print('Initializing GUI...')
34+
m_g_initialize()
35+
print('Initializing keypress detector...')
36+
m_kd_initialize()
37+
print('Performing integrity check...')
38+
m_ic_initialize()
39+
print("Loading Complete!")
40+
time.sleep(1)
41+
print("Welcome to Mr. Mine!")
42+
time.sleep(0.5)
43+
os.system('clear')
44+
mrmine_start_game()

0 commit comments

Comments
 (0)