First of all thanks so much for wanting to play my game, but unfortunatly i made this game in python and i have a ton of trouble exporting it to web, i might try again tommorow but for the meantime i promise my game isnt malware, i dont know how can i prove it but i can paste here few lines of code from the game to validate that i guess?
while True:
if add_???_countdown:
???_countdown -= 1
if ???_countdown == 0:
inventory["??????"] = True
if ???_unlocked and win_timer < win_max:
win_timer += 1
if ass_unlocked and fade_timer < 255 and win_timer >= win_max:
fade_timer += 15
# Handle events
for event in pygame.event.get():
if event.type == pygame.QUIT:
play_sound("Assets/bye.wav")
pygame.quit()
quit()
if event.type == pygame.MOUSEBUTTONDOWN:
sd = True
if event.type == pygame.MOUSEBUTTONUP:
sd = False
if help == "":
stuck_timer -= 1
if stuck_timer == 0:
stuck_timer = stuck_timer_max
craftables = find_craftable_items()
if len(craftables) != 1:
help = craftables[random.randint(0, len(craftables) - 1)]
else:
help = "key"
desperate_timer = desperate_timer_max
desperate_help = ""
else:
desperate_timer -= 1
if desperate_timer == 0:
desperate_timer = desperate_timer_max
fitting_recipes = []
for recipe in recipes: