Log In  

BBS > Superblog
Posts: All | Following    GIFs: All | Postcarts    Off-site: Accounts

This is my first attempt at a Pico-8 Game. I made this for my wife to play with our cat Aesop. When he is hungry feed him eggs, burgers, steaks, and turkey. When he is full take a nap and then go eat again. Just like a real cat.

Cart #rojotapupo-4 | 2023-03-04 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

2
0 comments


Cart #yuhedatumi-1 | 2023-02-27 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

1
0 comments


Cart #frog_game-2 | 2023-02-26 | Code ▽ | Embed ▽ | No License
1

I'm new to PICO-8. This is a little game I've been putting together as I learn. Nothing special or exciting (the enemies don't even fight back yet), just something to get my feet wet with and expand on as I go.

Arrow keys move the frog left and right. X key to shoot.

1
1 comment


Cart #driftsnow-1 | 2023-02-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
12

(v01 02-26-23)
TO LOAD THIS PICO-8 CART, in immediate mode, type: load #driftsnow


Hello.

While some years back I did write a fairly complex cart to draw snowflakes on the screen, they were not incremental. That is they stayed the same number on the screen at all times.

I was noticing in the BSNES emulator they do this instead. They add one snowflake per second on the screen-saver. The effect I think is rather pretty - so here is my version of it for Pico-8.

The code is documented quite thoroughly.


Be aware of some numbers you can fiddle with that are defined at the top of the code:

[ Continue Reading.. ]

12
6 comments


Cart #river_survivors-3 | 2023-02-26 | Code ▽ | Embed ▽ | No License
3

EDIT1: Bugfix
EDIT2: Yet another bugfix, passives did not get applied correctly
EDIT3: (Hopefully) fixed the slowdown when lots of fish are on screen

3
6 comments


Cart #manic_miner_test2-0 | 2023-02-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

updated

left/right = move
up = jump

1
2 comments


Cart #xicarus-1 | 2023-02-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
14

Xicarus's Xtreme Xventure

You are Captain Xavier Xicarus (xe/xir), a thrill-seeking pilot in a doomed solar system.
In 22 seconds, the Xun will explode, taking all life and all planets you know with it.
In the meantime, though, it's a great chance to do some sick donuts around a dying star.

XXX is an addictive and deterministic score-em-up where you maneuver an agile ship across treacherous environment.

Features

  • Addictive 30-second game loop
  • Refined, skillful gameplay
  • ZERO randomness; deterministic physics
  • Beautiful low-resolution graphics
  • Learn about doomed planets
  • Reach the highest score you can!

Controls

  • Arrow Keys to steer your ship
  • Press X to activate your boost, once every 30 seconds.
  • Press Z to open your Solar Atlas, which lets you view planet orbits, and learn about their composition
  • Press "Enter" for options

Credits

  • Brook.p8 - that's me!
  • Elyon - Lore ideas and support
  • Playtesters, including Kartik, Morgan, Nova, Tamsyn, softmagic
  • Shoutout to trans folks and autistic people everywhere, and especially autistic trans peeps!
  • Made for LowRezJam 2022 (I forgot to post it here oops)
  • Inspired by Outer Wilds

Meet the System

  • Xun
    Remaining lifespan: 22 seconds
    A hot and burning ball of code and plasma, facing imminent collapse
    Our beloved sun at the center of our system
  • Xerth
    Orbital radius: 29,000 pixels
    Its neon sea, which neatly divides the planet in half, creates the perfect habitat for life as we know it
    We call it home <3
  • Devril
    Average temperature: 450°F
    Due to the high heat and an atmosphere rich in oxygen and carbon, this planet is constantly lit aflame
    Possibly supports marshmallow-related life??
  • Keple
    Planet radius: 1200 pixels
    This body's orbit is extremely off-center, passing both closer to and further from the xun than any other planet
    Due to the extreme fluctuations in temperature, and its mossy poles, it does not support life. And if it did, it'd probably be lame anyway. Like moss or something.
  • Bolong
    Orbital eccentricity: 0.42
    Tidally locked with the sun
    Due to its fast movement as it approaches the sun, Bolong's dark side is notable bigger and denser than its sunny side
  • The Cube
    Sides: 6
    ???? What???
    We don't know how it got here
  • Debris Belt
    Number of asteroids: 1.27 million
    That's a lot of rocks
    The ring appears to extend beyond our observable universe

Thanks for playing!

14
5 comments


Cart #pacman_in_hell-1 | 2023-02-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

2
3 comments


Cart #bejuyasero-0 | 2023-02-25 | Code ▽ | Embed ▽ | No License
2

Hello.

I have noticed this sample program I wrote does not play 2-notes blending, one after another. No, it cuts off the first one and then plays the new one - despite being on an entirely different channel.

@zep, I think this qualifies as an error. Could you fix it, please ?

2
6 comments


Cart #punapimiyu-0 | 2021-08-28 | Code ▽ | Embed ▽ | No License
1

A simple platformer. I built this from scratch (using some samples as reference), to get a feel for implementing a simple game design. I made all the tiles, sounds, levels and code myself, using Pico8's inbuilt designer

1
1 comment


thx peoples from forum for wave text code

Cart #hello_world-0 | 2023-02-25 | Code ▽ | Embed ▽ | No License
1

1
1 comment


Cart #n3kt0-0 | 2023-02-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

3
1 comment


I've been trying ways to take a specific sprite and replace all of them on the map with another sprite.

Here are two methods I figured out.

Cart #set_all1-0 | 2023-02-24 | Code ▽ | Embed ▽ | No License
1


This here is the first method and the one I use in my Pico-8 game "Marley The Adventurer". Probably the most simple and reliable method. It just scans all tiles one by one every time it wants to swap and immediatly replaces it by the other tile if the tile matches the one specified. It uses almost no extra RAM, but a lot of CPU usage. And if one of the tiles gets removed or if one gets added it will still react properly and replace the new tiles as well.
The function takes two parameters: set_all1(current_tile_sprite, new_tile_sprite)

[ Continue Reading.. ]

1
21 comments


Cart #looprealm-4 | 2023-03-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
25

You're cursed and in a foreign realm. Time resets every 20 seconds and you have to find a way out. Talk to the locals for information and secret abilities that might help you on your journey down into the depths in this 20 second long metroidvania.

Update 1.2

  • Added an option to show how much time you have left.
  • Made the tackle ability easier to perform on d-pads and joysticks.
  • Fixed some dialogue inconsistencies.

Update 1.1

  • Added a secret ending.
  • Added an input overlay option.
  • Changed world design slightly.
  • Removed hint screen after time reset.

Controls

Arrow keys: Movement
Z: Jump
X: ?

**Looprealm was originally made for

[ Continue Reading.. ]

25
17 comments


Cart #rescue_ship_1-0 | 2023-02-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

A simlpe endless space ship game... :)

1
2 comments


I’ve started a new YouTube music series called “Gruber Jams”

My idea is to dedicate at least 30mins a week to recording a raw, unedited video of me writing Pico-8 music.  Like Bob Ross’s The Joy of Painting (but less cool obviously!).  These will be very spontaneous, sometimes productive, sometimes less productive, but will capture my process as purely as possible.

All of the music I write I’ll upload here to the forums so that others can use in their games, so please feel free to do so! This is the first one, Happy Frog Dance!

[sfx]

Cart #happyfrogdance-0 | 2023-02-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

[ Continue Reading.. ]

6
1 comment


Cart #scythes_breakout-6 | 2023-03-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

Controls:
Arrows to move the paddle
(x)=X/V
(o)=Z/C

Some gameplay

Changelog:
5/3/23-Fixed collision glitches
3/3/23-Added better logo and bug-fixes
28/2/23-Added music and other tweaks

2
0 comments


I was trying to download Pico-8 on my Mac device but (I already own it) so I went to the downloads page and clicked on pico-8 it never downloads and just takes me to the home page. So I tried clicking on the Mac icon. That did not work, I'm probably doing this wrong and maybe the downloads page isn't the downloads page or something? Or I'm clicking the wrong button. Tell me!

1 comment


Cart #matchem-0 | 2023-02-23 | Code ▽ | Embed ▽ | No License
15

Matchem is a traditional match three gem game, it is designed to be played either with a challenging time/move limited level mode, or a more relaxed endless mode.

Challenge mode:

Complete a color objective within a time limit or within a fixed number of moves.

Endless mode:

Play forever!

Daily Run Mode: Challenge yourself and your friends to achieve the high score of the day! Everyone's board and random gems will be the same each day.

15
0 comments


Cart #picoloadv-1 | 2023-02-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

I'm new to Pico-8, so I thought I'd work on a demake of the old Adventures of Lolo game for the NES. This is a fairly simple puzzle game with real time puzzles that have to be solved in the correct sequence. I just got the first level working and am starting work on the second level. Mostly just a preview at this point! I'm tinkering with it a few hours every week or so. Lots of fun and learning so much!

3
0 comments




Top    Load More Posts ->