Log In  
Follow
thesailor

I created this booklet design for my game Gemstone Dredging
It's a tiny printable booklet template you can use to create a custom game manual for your Pico-8 games (or for any other use really).

DOWNLOAD HERE

4
0 comments



Cart #gemdredging-21 | 2024-09-01 | Code ▽ | Embed ▽ | No License
44

The life of a Dredger can be one filled WITH RICHES... AND PERIL...
Go deep sea diving to find your riches!
But be wary...

  • Try not to disturb the KRAKEN or you are in for a FIGHT!
  • If you find yourself in a fight, use discovered gems to help you.

[ HINTS ]

  • Make sure to flag potential KRAKEN TILES if you don't want to trigger an unwanted 4+ battle!
  • Unused GEMS are used as BONUS points to your score each round!
  • Flagged KRAKEN tiles earns bonus points!

NEW MUSIC HAS BEEN ADDED

DOWNLOAD A TINY GAME MANUAL YOU CAN PRINT OUT

DOWNLOAD FROM ITCH.IO

HOW TO FOLD A ZINE

[ Continue Reading.. ]

44
26 comments



Cart #negigupepu-1 | 2024-03-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

[ BEAR HUNTER NINJA ]

The rules are simple.

From the three cards offered you get to pick one.

The computer then picks its choice of card from the same selection.

Hunter wins against Bear

Bear wins against Ninja

Ninja wins against Hunter

Will the card you pick win?

6
1 comment



Cart #sekoyijipu-0 | 2024-01-08 | Code ▽ | Embed ▽ | No License
3

I started this game last year. I need to finish it.
There's no story yet. It was just artwork I came up with as I really want to build a platformer.
Also I hate how gingers are portrayed as bad guys in movies (as I am one - ginger I mean).

There's mean koalas... and yummy bananas...
There's also double jump.
And a song I got from the forums. I will credit the artist in the game as soon as I remember where I pulled it from.

[ THINGS I HAVE LEARNED ]

  • Using bigger than 8x8 sprites
  • Using mulitple collision checks
  • Using tables
3
7 comments



Cart #jajawutiyi-6 | 2024-01-19 | Code ▽ | Embed ▽ | No License
10

This is a game I started at the beginning of the 2023. I wanted to create something simple while learning PICO-8. As you can tell the game is not finished but I am working on completing it during the next few days. I code while at sea and that can be difficult to make progress while working.

There are still things missing. My biggest hurdle is to make the game feel balanced. Right now it is too easy.

[ THINGS I HAVE LEARNED ]

  • Using bigger than 8x8 sprites
  • Collision boxes
  • Starting to wrap my head around using functions within tables (OOP?)

[ Continue Reading.. ]

10
8 comments



I am struggling to wrap my head around how the Music() and SFX() call functions work. I have a music track and some sfx calls that clash even though I have stipulated that the sfx calls only call on an unused channel. I have also tried to use the channel mask argument for Music() but can't seem to figure it out.

Basically a soundtrack plays while the game is running. Pressing a jump or collecting coins all trigger a sound effect that causes the backing soundtrack (Music()) to skip notes.

Could someone please maybe explain to me how I can have music AND call sound effects properly so they don't interrupt each other?

1
2 comments



I am struggling to wrap my head around creating a function to search though a table for matching positions and then replacing the matching value with a new value.

The idea is for a simple racing game. Every time an obstacle/car leaves the screen it is deleted from the table and new obstacle/car is generated with a new position.

The new position is randomly picked from a list of pre-chosen positions. But this means that there are occasions where the obstacles/cars overlap because they have randomly picked the same positions as an existing obstacle/car already in the table of obstacles.

My rough concept of the idea runs like this...

  • Create obstacle table
  • Create new obstacle
    • Check if obstacle table is empty - add new obstacle
    • If not empty
      -- Loop through table of obstacles and compare x/y pos values
      -- If a match is found(overlap) then change the x/y pos of the new
      obstacle BEFORE adding it to the table
      -- Maybe loop again to perform another check???
5 comments



Cart #farmbot-3 | 2023-11-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
11

FARM BOT

Hey. This is a toy and not a fully fledged game. I was working through @SpaceCat tutorial on YouTube and developed a touch further than where he left off. I learnt a lot from his video as well as, I have to give a shout out to @Lazydev and @DocRob. They all have amazing informative channels on YouTube as well.

EDIT: Also I forgot to thank NerdyTeacher as well. I yoinked the LERP function from the PICO VIEW web zine. Would really be awesome if there was a PDF/printable version of PICO VIEW. Being out at sea with bad internet makes looking up reference hard.

Like I said, this is a toy. I am still learning a lot and have only completed one Fantasy Console game (CHIPPY - LowresNX). But I have to admit that this is far too addictive playing with Pico8.

I dabbled with adding caterpillars as "enemies" but haven't taken it further than spawning them.

V1 - I have added some sounds to play around with the feel. I have also looked at adding character portraits.

  • LEFT/RIGHT/UP/DOWN (Movement)
  • Z/O (Selection in the hotbar/Action in menus
  • X (Action button in game/Open+Close menus
11
9 comments