Log In  
Follow
makaGeorge
Star Trader's Luck 1.0.1
by

Cart #makasoft0001-1 | 2023-11-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

Star Trader's Luck

A digital dice game for 1-4 players

Hi all, I discovered Pico-8 about a week ago and after trying it out decided it was best to just develop something as I learn... So I took an old dice game I created way back and programmed a digital version with some animations and music to accompany.

It uses your "typical" roll and re-roll dice mechanic, keeping at least one die each roll. In this case dice represent goods on a planet and the price for each good depends on the amount (supply) in that planet. You can travel to different sized planets and using the optional (and experimental) "Economy" rules, you can also choose between different types of planets that have different sets of dice. These new rules I came up with just now and might need to be adjusted...

[ Continue Reading.. ]

5
2 comments



Hi all,

New here... just discovered this wonderful system yesterday... I still haven't experimented with actual game development on the platform, but did try the music tracker to check out its possibilities...

While dabbling around with a simple idea for a song with different parts, I assumed I could define each part as a self contained loop and then from the code just switch parts as appropiate. For example: play the first part twice, then the second part twice and then the third part once.

But when I went to search how that could be done I found no simple answer so I gave it a try and made two methods that both seem to work:

  1. Keep track of what pattern is playing and for how long and just when it's about to end use the music command to start playing the next part of the song. As the ticks received from the stat(56) change in jumps (the timing of music playing seems to be different than the one for the update function) you can't wait right unitl the end of the pattern, so I guess sometimes the jump might be noticeable. But the advantage is that you can switch to any other pattern freely...

[ Continue Reading.. ]

2
1 comment