mirror of
https://github.com/Xameren/Casino.git
synced 2025-02-04 08:29:24 +01:00
2 bugfixes, 1 improvement
This commit is contained in:
parent
c9d102f15d
commit
cb622d6af6
1 changed files with 7 additions and 3 deletions
10
Casino.py
10
Casino.py
|
@ -944,7 +944,7 @@ def Coinflip():
|
||||||
print("You won ", b, "dollars!")
|
print("You won ", b, "dollars!")
|
||||||
print("You gained 10 XP ")
|
print("You gained 10 XP ")
|
||||||
xp += 10
|
xp += 10
|
||||||
|
time.sleep(2)
|
||||||
#HorseBettin()
|
#HorseBettin()
|
||||||
#keno()
|
#keno()
|
||||||
#casinowar()
|
#casinowar()
|
||||||
|
@ -1065,12 +1065,12 @@ def dailyreward():
|
||||||
sleepytime += 0.1
|
sleepytime += 0.1
|
||||||
time.sleep(sleepytime)
|
time.sleep(sleepytime)
|
||||||
if bigrandom == 1:
|
if bigrandom == 1:
|
||||||
money += randmoney
|
money += randmoney*level
|
||||||
print("\033[H\033[J", end="")
|
print("\033[H\033[J", end="")
|
||||||
print("Your daily reward is...")
|
print("Your daily reward is...")
|
||||||
print(f"> {randmoney*level} $ <")
|
print(f"> {randmoney*level} $ <")
|
||||||
else:
|
else:
|
||||||
xp += randxp
|
xp += randxp*level
|
||||||
print("\033[H\033[J", end="")
|
print("\033[H\033[J", end="")
|
||||||
print("Your daily reward is...")
|
print("Your daily reward is...")
|
||||||
print(f"> {randxp*level} XP <")
|
print(f"> {randxp*level} XP <")
|
||||||
|
@ -1205,6 +1205,10 @@ def load_game():
|
||||||
if legit == False: # ):
|
if legit == False: # ):
|
||||||
print("I should have allowed you to change the odds \nof the games in the save file aswell, eh?")
|
print("I should have allowed you to change the odds \nof the games in the save file aswell, eh?")
|
||||||
time.sleep(7)
|
time.sleep(7)
|
||||||
|
if money > 999999999:
|
||||||
|
print("Youre so greedy aswell...")
|
||||||
|
money = 0
|
||||||
|
time.sleep(3)
|
||||||
|
|
||||||
load_fail = False
|
load_fail = False
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue