Skip to content

Commit f85f282

Browse files
v1.5-alpha.3 upload
1 parent f42c05f commit f85f282

File tree

12 files changed

+6507
-0
lines changed

12 files changed

+6507
-0
lines changed

v1.5-alpha.3/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.3/launcher.py

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

0 commit comments

Comments
 (0)