This commit is contained in:
2025-06-13 22:54:58 +01:00
2 changed files with 8 additions and 0 deletions

View File

@ -1,6 +1,13 @@
import pygame import pygame
from random import randint from random import randint
def fire():#LETS GO GAMBLING
if randint(1,6) == 6:
PlaySound(GunShot)
#remember to add shock
else:
PlaySound(GunBlank)
screenw = 1280 screenw = 1280
screenh = 1080 screenh = 1080
yOffset = 0 yOffset = 0
@ -55,6 +62,7 @@ while running:
spinInc = 0 spinInc = 0
spinning = False spinning = False
startSpin = False startSpin = False
fire()
screen.blit(gun[spinInc][0],(0,0)) screen.blit(gun[spinInc][0],(0,0))

Binary file not shown.