1
entry to battle of the bits game jam 6
https://battleofthebits.com/arena/Entry/hexa-pix/77441/
hexa-pix is a 16x16 puzzle picture game, use the horizontal and vertical hints to create icons from the battle of the bits spritesheet. there are 200 puzzles in total.
this game involves solving nonograms similar to games such as picross.
the hints use hexadecimal notation instead of base 10, except for 16 which is a "#" character (i.e. fill the whole row). for example, A = 10, C = 12 and F = 15 (this decision was made to maximise the TIC80's small screen resolution).
all the puzzles have been generated via scripting. all puzzles should be solve-able but you may need to guess in some cases.
tip: use the collection screen to jump to any puzzle in any order, simply click on one of the icons
![]() gamefixes
|
There are two errors when trying to play it in the latest version of TIC80
File "main.py", line 1048 pix_keys_len = len(pix_keys) AttributeError: 'dict_iterator' object has no attribute '__len__ can be fixed with: pix_keys = list(pix_data.keys()) And then there is a division by zero, than can be fixed with: for m in range(divisions): proj.new(px, py, (2*pi)/(divisions/(m+1)), 2, |