Controls: Arrow keys to move. Hold X to pull blocks.
Where do all those tetrominoes come from? From the Tetrafabrika, of course!
Build tetrominoes as fast as possible in this manic arcade Sokoban-like.
This is my entry to Lowrezjam 2023--where you make a game at 64x64 resolution or lower.
v1.01
Do not worry. It's going to be okay.
Has today been rough? Are you feeling a distinct lack of emotion due to outside factors? Come sit down, relax, and distract yourself for a little. Play games of Othello against this sentient void, who will be here to support you. It will be okay.
Made for A Game By Its Cover 2023. Inspired by Lumbud84's cover art for Apathello from the Famicase Exhibition 2023. Developed for PICO-8. Also available on itch.io.
Instructions
- Arrow keys: Move cursor, change player difficulty






Recently I am learning how to combine my collision system with advanced movement into my top-down "walking simulator" cart, when I often found my character "stuck" on the walls.

Note: only applied advanced movement in X axis, while you can go through walls in Y direction in case of stuck.
Collision codes:
function collid(x,y,con) local x1,x2,y1,y2=0,0,0,0 local cflag=0 if con==⬅️ then x1,x2,y1,y2=x,x-1,y,y+7 end if con==➡️ then x1,x2,y1,y2=x+7,x+8,y,y+7 end if con==⬆️ then x1,x2,y1,y2=x,x+7,y,y-1 end if con==⬇️ then x1,x2,y1,y2=x,x+7,y+7,y+8 end if fm(x1,y1,1) or fm(x2,y1,1) or fm(x1,y2,1) or fm(x2,y2,1) then cflag=1 end return cflag end |
function fm(x,y,flag) return fget(mget(z\8,y\8),flag) --assuming solid flag = 1 end |
X-axis movement codes:
function upd_pmove() p.x,p.y=mid(0,p.x,120),mid(0,p.y,120) --x:acc movement if collid(p.x,p.y,➡️)+collid(p.x,p.y,⬅️)==0 then if btn(➡️) then p.dx+=p.acc end if btn(⬅️) then p.dx-=p.acc end else p.dx=-p.dx end p.x+=p.dx p.dx*=friction p.dx=mid(p.dx,p.max_dx,-p.max_dx) ... end |
So, have you got any more adaptative collision to cope with that sticky situation? Or is there any improvement for the movement system? Post here if any!
-ThePixelXb_



Mangle08 (!!!SEIZURE WARNING!!!)
What this cart does is poke as many values as possible to mangle pico-8 into an almost unusable state. it will mess with colors, drawing, the map(?), and sounds.
This cart is best experienced when downloaded and ran on desktop pico-8, or at https://www.pico-8-edu.com/ . just type "load #mangle" to load it. after running it for a bit try messing around with the sprite editor, sounds, map, or anything else.


So, i was thinking about a little horror game where you are in like a big complex and there is a monster, you have to hide when its near you and have to escape. Im currently making it and its pretty hard, the mget dosent wanna work so thats bad, but as im typing this out i think i can make it work just by copying it from the collision system. I will post updates how im doing on the game. I hope you will like the full game when it comes out!


Introducing my first PICO-8 game... Hazmat Havoc!
Created with VirtuaVirtue and Pico-8 Gamer.
You play as an Area 51 worker who dropped their keys through a grate during a shift. You must venture through the depths of the facility, either eliminating enemies or perishing!
A pretty standard top-down beat-em-up until around halfway through, when the player gets tired and... opens new doors. Play and find out!
This game had a pretty crazy development cycle. We had two weeks to develop the game for LOWREZJAM. For the first week or so, we were sort of chugging along. But, after multiple nights where a couple people weren't available, it became clear that we were lagging behind! On the last night, we kicked it into high gear. At first, it was going well, except for the fact that Pico-8 Gamer wasn't available. VirtuaVirtue was developing at light speed, and I was steadily progressing through my half of the game. Suddenly though, communication was completely cut off from me to VirtuaVirtue (I later learned that he fell asleep at the keyboard)! It was quite late, and I ended up staying up and coding as much as I could through the entire night... and then I submitted the game 8 minutes before the deadline! Anyways, I hope you enjoy.





Hi, this is my first PICO-8 game. It's a tower defense game inspired by an old flash game called Vector TD. Hope you enjoy!
Keys:
Z - open shop / OK
X - send wave / Cancel
Arrow keys - move selection

It's also available on itch: https://tube-man.itch.io/pixel-td
Also the code is available on github: https://github.com/beardedsakimonkey/pixel_td.p8
Updates:
9/12/23 - Fixed bug where towers could earn double gold on kill (thanks Cowirrie)










WELCOME TO THE CRUEL BUT FAIR
TRON LEGACY
INTENTED TO BE PLAYED ON KEYBOARD
Your boss stole your work, as you were trying to hack is network he managed to trap you in your own game.

CONTROLS:
- C - Start one player game
- A - Start two players game
PLAYER ONE :
- Left/Right/Up/Down - Move lightcycle
- X - Fire projectile
PLAYER TWO :
- S/F/E/D - Move lightcycle
- A - Fire projectile
GAME A:
In one player mode you have nine tries to escape the mazes and return to your world.
yellow dots up you score, and may have other effects...
hit the word "shoot" to have one single shot
RULES :
- 1 You must find the way to exit.
- 2 Rules may change.
- 3 Exit is not always what it seems.
GAME B:
In two players mode you must defeat your opponent height times, by shooting him or making him crash.
You start with one shot, you can have others by passing over yellow dots that randomly appear.




Bitty Dig
A small digging game made for Low Rez Jam 2023.

Use your arrow keys to dig. You will need to collect stars to get air. Try to find an efficient path through the blocks.
Tip: You can jump by pressing up, and you can move side to side a bit while jumping.
I really want to make a slower-paced drilling game. I might continue to poke at this for balance.






Inspired by SegaSoft's Lose Your Marbles released for Microsoft Windows on August 19, 1997. In this version you will try to match colors of 3 or more marbles in the center row. Left and right buttons will shift the marble column select cursor. Up and down buttons will shift the selected column of marbles up or down. The X and O buttons will rotate the center row of marbles. A level is completed when a single column of marbles is emptied. The game is over when a single column of marbles is filled. Hope you enjoy it!

Canyon Crisis
Made in 2 weeks for #LOWREZJAM 2023!
By @Jammigans, Mothense, and @fletch_pico
Play as a cowboy amidst an alien invasion! Run through an endless canyon, saving cows, shooting aliens, and trying to stay alive in the canyon heat!
Controls
- Arrows – Move character / change menu option
- C – Fire gun / select menu option / restart level
- P – Open PICO-8 cartridge menu
(within PICO-8 menu) arrow keys & ENTER to navigate menu
Game Features
- Stamina system! The bar on the right indicates how tired you are from the canyon heat! You lose stamina every second just from how hot it is. Additionally, taking a step or getting hurt by alien attacks also reduces your stamina. Pick up the pink orbs dropped by barrels or aliens to refresh yourself!





