Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Cool game!

I think there is something wrong with picking up the guns on the floor though. It sometimes crashes on me when I pick it up. Does the player drop his current gun when he picks up a new one? I think the crash might happen when the old gun is dropped in a certain location

(1 edit)

Was super curious to see how you did the game in Python and downloaded the source and found the source of the bug: 

  File "momentus-proto-master\Player.py", line 212, in get_keys     if self.itemA.check == False: AttributeError: 'Pistol' object has no attribute 'check'

It seems "game.machinegunpick" is being checked in the player update before "self.itemA" is being set to the machine gun class in the main game update.

Hope this helps!