The “Arcade-maker Master” Award
Presented by Buffalo974 to:
The Rule (The Rule) | |
---|---|
Shooter game requiring a bit of thinking - Edit: not that much actually Important note: The game was coded for Python3 Here are 3 lines to change to make it work with Python2.7: Line23 of ./thorpy/gamestools/hud.py: change nfull = math.ceil(life*self.n) to nfull = int(math.ceil(life*self.n)) Lines 0 of ./hud.py and ./gamelogic.py: add the line: from __future__ import division |