So, I've been wanting to code a pico-8 game and I know the limits of the 8192 tokens, 64 sounds, blah blah blah, I just need to know some actual coding. For example, how would I make a kill trigger for spikes, or a windscreen for collecting something?
Lot of good places to start laid out here:
https://www.reddit.com/r/pico8/comments/urld39/deleted_by_user/
the original post is deleted but the top reply has the info, should still be viewable on the site (I don't use the app)
The key to learning to code is to work in tiny steps. Don’t try to write your grand vision straight away. It’ll take you too long, there will be many things that can go wrong, and you’ll get discouraged.
Start with something small — as small as you can imagine. Drawing a sprite in the middle of the screen, for example.
Then add the smallest improvement to it that moves you towards your vision. Making the sprite move left/right when you hold a button, maybe.
Then another tiny improvement. Maybe move left, right, up and down.
Then another: maybe stop the sprite moving off the edge of the screen.
And keep going.
Keep your eyes on your end goal. But always keep your program working. Never make changes that break your program for too long. Make your changes small enough that you’re happy to throw a change away and try something new if it doesn’t work out.
And who knows, along the way you might be inspired by your program doing something cool that you didn’t expect.
[Please log in to post a comment]