Log In  

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

I have monospace enabled in the code editor and as you can see the text between the first and second line is off by one pixel. I have switched between regular and monospace and the issue remains the same.

5
2 comments


Cart #marcianitos2-0 | 2024-11-19 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

Overview

Marcianitos tries to recreate the experience to play a shmup from an 80s arcade video game room, where you wasted a little amount of coins in an addictive game. Difficult to play, but worth it if you were willing to spend some time shooting enemies and looking for strategies to defeat the final boss. You wanted to play again and again because you knew you could do it better next time.

Controls

  • Arrow keys for moving the ship
  • Z normal shot
  • X bomb shot (high damage)

Rules

Kill all the enemies you can before they kill you!

[ Continue Reading.. ]

3
1 comment


Sphere, a 3D wireframe sphere in a cloud of stars.
One of my favorite Pico-8 sketches I ever did.

10
2 comments


Finally figured out fillp and second palette for sprites and tline.

13
3 comments


Cart #hackrun1-0 | 2024-11-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

Use your sk1llz to breach the system, wrong choices cause glitches.

0 comments


Cart #motorcycle-0 | 2024-11-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

I like riding my motorcycle, but sometimes it's too cold, so I made this video game to relive the feeling.

1
1 comment


Hello World

0 comments


Cart #double_snake-6 | 2024-12-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6


Double Snake - 2 player snake game with bonuses!

Additions

These are additions that were made compared to the original snake game:

  • 2 player versus and co-op modes
  • Special apples that give random bonuses
  • Map border walls are randomly generated each game

Game Modes

Co-op - play with your friend on a single field to achieve highest possible score together! The game is primarily designed for this mode.

Versus - play against each other! First player to win 10 rounds win! Note: when bumping head to head snake with longer body wins the round. If length are equal nobody wins the round, scoreboard remains the same.

[ Continue Reading.. ]

6
2 comments


Cart #shining2-6 | 2024-11-30 | Code ▽ | Embed ▽ | No License
16

Look Who's The Shining Two! follows the adventures of Adult Danny Torrance, who has just gotten a job at the Overlook Hotel but is stuck in the haunted hedge maze on his first day. Can you commute to work?!

This game was created for the PiCoSteveMo game jam, with music by kittenm4ster and technical support from pancelor. Thanks to BaseCase for hosting PiCoSteveMo!

16
16 comments


Cart #todd_pyramid-0 | 2024-11-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

Made for a 1-button game jam, enjoy!

5
1 comment


Cart #fishy_business-0 | 2024-11-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

3
2 comments


Cart #deskapes-0 | 2024-11-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

5
6 comments


Cart #debuddinglove-0 | 2024-11-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

1
0 comments


Cart #pipibemibo-1 | 2024-11-24 | Code ▽ | Embed ▽ | No License
2

2
1 comment


Your sister has been killed by a furious demon.
With the Artifact in hand, you can take your revenge.

Cart #artifact_lexaloffle_v02-1 | 2024-11-30 | Code ▽ | Embed ▽ | No License
1

This is a work in progress zelda-like. The goal I set for myself was to use a single item in a variety of ways.

I have a few questions for anyone who would like to leave their feedback.

Thank you for playing!

Controls

Up, down, right, left to move.

When you have the artifact:

Hold X to aim artifact.
Release X to throw.
Hold X to call back

When you have the shadow powerup:

Hold Z while throwing or calling back the artifact
to leave a shadow.

Playtest Questions

How does the artifact feel to control?

How does the game-world feel to be in?

How do you feel about the characters?

Was there anything that felt too hard or too easy?

Is there anything you would change about this game if you could?

1
0 comments


MILD FLASHING LIGHT WARNING

Cart #nebulaser-0 | 2024-11-24 | Code ▽ | Embed ▽ | No License

My first ever project, created with the help of the Lazy Devs Shmup tutorial. Please Enjoy!

Controls

Arrow Keys: Movement
Z:Shoot
x:Bomb

Rules

Destroy all enemy ships to progress to the next wave.
Dispatching an attacking ship grants double points.
Collect Charges to use a Bomb, and a Shield to take an extra hit.
Extra Shields are turned into Charges.
If you collect 10 Charges, they'll be converted into an extra life or bonus points.

Credits

Art and Sound by me

[ Continue Reading.. ]

0 comments


Cart #samurise-1 | 2024-11-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
42

Raijin, god of thunder has stolen your beloved cat! Fight through Oni and chase him to the heavens to save her!

A runner/platformer where all you need to worry about is jumping and swinging your katana!

Controls

​Your character will run back and forth automatically.

​Jump: Up key/button

Attack: 'o' or 'x' button, keyboard: z / x / c

Characters

​​
The Samurai

​The player character and hero of the story. On a revenge mission to retrieve his cat!

[ Continue Reading.. ]

42
29 comments


Hey,
Out of curiosity, I wanted to implement Aspect Oriented Programming into metatables used as objects.
I'm having trouble making the __index meta-method to work correctly.

My goal is whenever the functions update or draw are executed, I also execute the functions called pre_update, pre_draw and post_update and post_draw if they exist in the same object.

I can't make the code below to work. What am I doing wrong?


function aop_mt(tbl) 
  tbl = tbl or {}
  tbl.__index = function(tbl,key)
    local ogfunc = rawget(tbl, key)
    if (one_of(key, "update", "draw") and is_fun(ogfunc)) then
      local prefunc = rawget(tbl,"pre_"..key)
      local postfunc = rawget(tbl,"post_"..key)
      return function(self,...)
        if(prefunc) prefunc(self,...)
        local ret = ogfunc(self,...)
        if(postfunc) postfunc(self,...)
        return ret
      end
    end
    return ogfunc

[ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=157995#p)
2 comments


hi everyone this is my first post to bbs

im working on a roguelike on the pico 8 and running into some issues
it seems like im hitting a limit on the -y axis
my player keeps moving like normal since the camera is centered on him but then suddenly its like i hit a wall and then
the player start shifting from the center going up
adding the cartridge since i feel like i wasnt able to describe it properly

Cart #duyfawifi-0 | 2024-11-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1


try to keep going up

can i get an explanation on what i am doing wrong ?

1
3 comments


Cart #flappy_bird_demake-0 | 2024-11-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

Credits To:SpaceCat Tutorial

2
2 comments




Top    Load More Posts ->