Skip to content

Commit

Permalink
Sus
Browse files Browse the repository at this point in the history
  • Loading branch information
MunaAlaneme committed Nov 6, 2024
1 parent 05551ae commit 0e0a29c
Show file tree
Hide file tree
Showing 15 changed files with 29 additions and 22 deletions.
11 changes: 9 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,6 +597,13 @@ def load_game():
if not offlineProgressCheck:
offlineProgressCheck = True
open('./save/gamesaveGameTimeStuff2.txt', 'w').write(f"{offlineTime}")

"""
if event.button == 1:
print("You pressed the left mouse button")
elif event.button == 3:
print("You pressed the right mouse button")
"""
while running:
framestofixload += 1
gemboost = Decimal((50+gems)/50)
Expand Down Expand Up @@ -691,7 +698,7 @@ def load_game():
if button_i == 0:
target_scale_x[0] = 550
for event in pygame.event.get():
if event.type == pygame.MOUSEBUTTONDOWN:
if event.type == pygame.MOUSEBUTTONDOWN and event.button == 1:
target_scale_x[0] = 450
scale_x[0] = constrain(scale_x[0]-40, 200, math.inf)
score += Decimal(click_value)*Decimal(random.uniform(0.95, 1.05))*Decimal(click_value_multi)*Decimal(gemboost) + Decimal(cps_to_cpc)*Decimal(auto_click_value)*Decimal(auto_click_rate)*Decimal(gemboost)
Expand Down Expand Up @@ -739,7 +746,7 @@ def load_game():
if event.type == pygame.MOUSEBUTTONUP:
for i, button in enumerate(NoSettings_buttons):
Settings[i]["held"] = False
if event.type == pygame.MOUSEBUTTONDOWN:
if event.type == pygame.MOUSEBUTTONDOWN and event.button == 1:
for i, button in enumerate(upgrade_buttons):
if button.collidepoint((mos_x - CamPos[0]*WindowXscale, mos_y - CamPos[1]*WindowYscale)):
UpgradeTargetButtonColorRed[i] = 150
Expand Down
2 changes: 1 addition & 1 deletion save/gamesaveGameTimeStuff2.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1730813185.955616
1730921677.5278149
2 changes: 1 addition & 1 deletion save/gamesaveScore.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
224029169740256.4921249495158
86875355162597634.88569845576
2 changes: 1 addition & 1 deletion save/gamesaveSettings1.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0
24.57709312438964843750
2 changes: 1 addition & 1 deletion save/gamesaveSettings2.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
X25
Max
4 changes: 2 additions & 2 deletions save/gamesaveUpgrade0.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
9359103126591795.024410320956
82014772014720789.03294184402
36.3636363636363597606759867630898952484130859375
1.100000000000000088817841970012523233890533447265625
300
325
2 changes: 1 addition & 1 deletion save/gamesaveUpgrade1.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
20590026878501951.24821681025
84047459931209718.44477347208
80
1.100000000000000088817841970012523233890533447265625
300
2 changes: 1 addition & 1 deletion save/gamesaveUpgrade2.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
128687667990637195.3013550640
83747622412391111.14051925095
500
1.100000000000000088817841970012523233890533447265625
300
4 changes: 2 additions & 2 deletions save/gamesaveUpgrade3.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2235114364976236379930000
47475615099430000
10000
7
14
15
2 changes: 1 addition & 1 deletion save/gamesaveUpgrade4.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
7927783846300702.448986324224
82907786954557205.21520577067
1200
1.0700000000000000621724893790087662637233734130859375
375
4 changes: 2 additions & 2 deletions save/gamesaveUpgrade5.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
3140803696150619446647735000
800687735923635000
35000
9
12
14
4 changes: 2 additions & 2 deletions save/gamesaveUpgrade6.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
4036957480936854.663790063156
85833100929519316.30152609491
18000
1.0700000000000000621724893790087662637233734130859375
325
350
2 changes: 1 addition & 1 deletion save/gamesaveUpgrade7.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
57488042561527615.87844367176
82838618419351853.62172331865
1000
1.060000000000000053290705182007513940334320068359375
475
4 changes: 2 additions & 2 deletions save/gamesaveUpgrade8.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
9.018274390729410306375000000E+33
4324877929687500000
500000
15
9
11
4 changes: 2 additions & 2 deletions save/gamesaveUpgrade9.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
74505804443359375000000
152587890625000000
1000000
5
14
16

0 comments on commit 0e0a29c

Please sign in to comment.