Log In  


Cart #kusosolitaire-1 | 2024-04-27 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
14

I made a small Solitaire-Variant, based on italian Triestine-Cards. The Deck goes from 1-13, but without cards 8, 9, 10. Normal-ish soltaire-rules apply. You can stack cards by alternating suits.

"Kuso" (Originally Croatian "Kušo", say it like KOOSH-OH, which kinda means "friend") is my grandpas nickname, who basically sits on his terrace in Croatia all day, playing solitaire with triestine–cards.

I used one secret color, the darker green.

Thanks for Playing!

14


1

Nice. I like it.


1

Great job again! I'm looking forward to playing it on my handheld :)


1

I love this! The look is so nice and I love the shape of the cards.

There is a game breaking bug if you are at cursor position 11 ("waste") and press right and up at the same time. This is because the right press is handled first, incrementing the curpos to 12, and then when the up handler calls get_max_stack_size(curpos), slots[12] is nil.

There's a couple ways to fix this. The first would be to change the btnp() arrow calls from individual if statements to a series of elseif so that they are called separately. Another would be to put the if(curpos>11) curpos=5 inside the if(btnp(➡️)), and likewise put the if(curpos<5) curpos=11 inside if(btnp(⬅️)), so that they are within the correct range before get_max_stack_size is called :)


1

@grimmrobe thanks 100% for the report and suggestions! I updated the cart.



[Please log in to post a comment]