That is awesome. Level 20 took me quite a while to get right. Had to test it probably about 10 times but could never remember the solution haha. Thank you very much for the comment, I really appreciate it :)
Fun game that I enjoyed greatly, but for some reason level 11 won't mark as completed. I have beaten 15 levels so far and this is the only one causing issues.
I've finished all of the levels, the only issues I noticed were 11 and 17 not marking themselves complete, and level 16 marking level 11 complete instead of itself. Nonetheless, good job
← Return to game
Comments
Log in with itch.io to leave a comment.
Hello really nice game ! I would love to play picocross on my handheld console, where can I find the p8 file ? :)
Fantastic little picross implementation. Great job!
So Nice! I like it. Nice coding and sound!
Thank you very much :) I was really happy with the music even though it is super super simple.
This is a great implementation of Picross! Thank you for adding a button to mark empty spaces. I had fun solving level 20, with no misses! :D
That is awesome. Level 20 took me quite a while to get right. Had to test it probably about 10 times but could never remember the solution haha. Thank you very much for the comment, I really appreciate it :)
Fun game that I enjoyed greatly, but for some reason level 11 won't mark as completed. I have beaten 15 levels so far and this is the only one causing issues.
Update: completing level 16 marked level 11 as complete, but not level 16
Thank you very much for bringing this up. I will look into it ASAP!
I've finished all of the levels, the only issues I noticed were 11 and 17 not marking themselves complete, and level 16 marking level 11 complete instead of itself. Nonetheless, good job
Many thanks again for letting me know, I have added and update to fix that screen for the future. :)
To calculate the Y coordinate of the level select screen to turn the box green I was using:
Round_down(level_number / 6)
That only works for the numbers 1-10. The correct equation is:
Round_up(level_number/5)
Many thanks again, really appreciate the feedback!