Log In  

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

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!

P#146619 2024-04-14 15:12 ( Edited 2024-04-27 05:56)

1

Nice. I like it.

P#146626 2024-04-14 17:29
1

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

P#146762 2024-04-16 15:08
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 :)

P#147407 2024-04-27 00:50 ( Edited 2024-04-27 01:02)
1

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

P#147418 2024-04-27 05:57

[Please log in to post a comment]