Comments

Log in with itch.io to leave a comment.

(+1)

cool game

Thank you so much for playing!!

(+1)

Fletch is a code wizard but also a real wizard because this game makes people's hands move on their own

😂 Thanks for playing Leaf!! So glad you’re enjoying it!

(+1)

This is a lovely little game, I especially adore the graphics despite their simplicity, got 138 on my first try.  By the way, why specifically 63 seconds?

(+1)

This is such a programmer reason: the x axis is 64 pixels wide (indices 0-63), so the timer you see at the bottom of the screen is moving 1 pixel per second! I could have:

  1. kept the timer 60 seconds long, but then the bar wouldn’t fill up all the way, or
  2. multiply the timer value by a constant to get the correct length for a 60 second, but that used more characters than I wanted

t()*1.066

63 seconds felt like a good enough compromise to me! If I develop this game further without the character restriction I’ll likely make it 60 second games.

(+1)

Well done, Fletch!

Thank you so much vieko!

(+1)

It's a solid idea, good work

Thank you so much for playing!

(4 edits) (+1)

I have a tip on making it better-ish but try using a for loop for the particles like this 
`for i=0, 999 do
pset(r(q),r(q),1)end`
this way is fast because your only looping 999 times rather than 4096 times, you can even get rid of the cls() and flip() this way

also, how do I put code here, I only know how Discord does it by using this ```lua```?

(+1)

some resources

Basics - PICO-8 Tweetcart Studies (pixienop.net)

PICO-8 tweetjam stuff (github.com)

(1 edit)

I’m not entirely sure how formatting on itch works; I just used some <pre> tags around the code block in the game description!

That’s a good suggestion, thank you for contributing!

(1 edit) (+1)

Your welcome

(+1)

this game is so addicting great job

Thank you for playing!!

(+1)

Such a straightforward concept and so satisfying! I keep feeling compelled to try to one-up my previous score. Love it!

Thank you so much for playing friend 💜💜

(+1)

Got 118 on my first try, 149 on my second, and 153 on my third! Had a lot of fun, great work!

(+1)

Thank you so much for playing, and for hosting!! Can’t wait to try the other submissions!

(+1)

Oh my!! This was so fun! I got 75 in the time limit, but I was also playing it on my phone. 😊 Awesome tiny game, Fletch!

Mobile is definitely so much more difficult 😂 thank you so much for playing!!

(+1)

EPIC

Thank you so much for playing friend!!

(+3)

Love it! This is a perfect little micro game.  I like how the particle are randomized, and after playing it for a bit you realize there is some "strategy" to always returning home.  

Nice job Fletch.

Thank you so much for playing!

(+1)

Even with so few characters, this has the signature Fletch polish! The green fading particles after collecting the tile are a cool touch. And the tile layout discouraged the kind of random button-mashing that I assumed would be a winning strategy - I actually had to think about my approach.

Thank you so much for playing!