Log In  
Follow
LazarevGaming
BallGame - My first game
by LazarevGaming
[ :: Read More :: ]

MIGHT CAUSE EPILEPTIC SEIZURES

Cart #nicedemoeffect3-0 | 2022-12-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

P#122911 2022-12-23 22:47

[ :: Read More :: ]

MIGHT CAUSE EPILEPTIC SEIZURES
This is similar to my first demo effect but this time it's in color

Cart #nicedemoeffect2-0 | 2022-12-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

P#122910 2022-12-23 22:38 ( Edited 2022-12-23 22:39)

[ :: Read More :: ]

MIGHT CAUSE EPILEPTIC SEIZURES
The speed of this animation can be altered by changing the value contents inside the sine are multiplied by.

Cart #nicedemoeffect-0 | 2022-12-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

P#122654 2022-12-18 19:41 ( Edited 2022-12-23 22:48)

[ :: Read More :: ]

Cart #spiderweb-0 | 2022-09-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4


This is an unfinished project I used to work on a few months ago.
It includes a randomly-generating spider web.
Technical details:
Dots are placed randomly and they only connect with eachother when
they are <=(a certain distance) away.
The web doesn't lag pico-8 too much because it only gets generated
on the first frame and It's then stored in the extended memory and
redrawn from there every frame afterwards.

P#117016 2022-09-07 12:02 ( Edited 2022-09-07 12:11)

[ :: Read More :: ]

Cart #scmbios-1 | 2022-08-23 | Code ▽ | Embed ▽ | No License
2

I am planning on making a game where you try to discourage a
cold war era computer that's gone rogue from launching an ICBM

The following cart showcases the fake bios I made for it.
Changing colors is now possible by using arrow keys.
Please give feedback so I can improve this "bios"

P#116147 2022-08-22 22:04 ( Edited 2022-08-23 19:42)

[ :: Read More :: ]

Tractor Madness is a game where you yeet paintings at people while dodging helicopter missiles all while driving a tractor
Since that is a lot to take in, I've made a simple list of the things the game has
Game features:
Tractor physics
Bob
Bob lying on the ground
Paintings
Secret codes for more content
And much more!!

Cart #tractor-2 | 2022-08-13 | Code ▽ | Embed ▽ | No License
9

Green tractor is real 2401

P#114938 2022-07-28 19:41 ( Edited 2022-08-13 11:45)

[ :: Read More :: ]

Cart #blitz-0 | 2022-07-11 | Code ▽ | Embed ▽ | No License
7


This is my last pico-8 cart for some time.
This game was meant to have a lot more content but it was cut just so the game would be released today.
Development hell is horrible!!
Don't expect much from this game.

P#114197 2022-07-11 14:03 ( Edited 2022-07-11 14:05)

[ :: Read More :: ]

Cart #picobird-0 | 2022-06-17 | Code ▽ | Embed ▽ | No License
4

PICO-Bird is a flappy bird clone made in pico-8 in less than 512 characters
It was made for the following game jam
https://laz256.itch.io/pico-bird
All the code can be viewed on this page
https://itch.io/jam/pico-8-512-char-jam/rate/1578074

P#113269 2022-06-17 16:20

[ :: Read More :: ]

Cart #race-3 | 2022-06-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


I was practicing extreme optimization and came up with this cart
There's not a lot to see here but what matters is that it works

Edit:The original took up 182 characters, this new version takes up only 176 characters

Edit2:Thanks to @p01, the new version takes up 133 characters. Unfortunately, not all the techniques
could be implemented without problems as racer 5 was the only one that could win in your code

Edit3:I was able to make the cart smaller by 3 characters which is not that bad

P#113067 2022-06-12 20:11 ( Edited 2022-06-15 09:05)

[ :: Read More :: ]

Tiny Town is a game made in pico-8. It's based around another game called "Batch Town" which was made entirely in batch. https://general-nut.itch.io/batchtown

It was made for the "One Game a Month #12" jam on itch.io which can be found here.
https://itch.io/jam/one-game-a-month-12

Controls:
Up and down arrow keys to choose jobs
Right and left arrow keys to assign people

Cart #tinytown-3 | 2022-05-27 | Code ▽ | Embed ▽ | No License
6

Changelog:
Version 1.01: added level 9 town

P#112333 2022-05-26 17:21 ( Edited 2022-05-27 17:49)

[ :: Read More :: ]

Vec-Rhytm is a game similar to vib-ribbon. Your goal is to dodge
the obstacles that appear as the music is playing.
There are only 2 songs. This is more of a tech demo than a real game,
I wanted to see if drawing lots of triangles would be viable, It was!

Cart #vecrhytm-1 | 2022-05-13 | Code ▽ | Embed ▽ | No License
5


The music titled "Into the belt" was taken from Pico-8 Tunes Vol.2
which can be found here
https://www.lexaloffle.com/bbs/?pid=62911

P#111773 2022-05-13 08:46 ( Edited 2022-05-13 16:41)

[ :: Read More :: ]

I've made an algorithm that allows you to store 4 1-bit sprites in the space of a normal pico-8 sprite.
This version uses up the cpu a lot less compared to the previous which used pset().
It could be a little hard to use so there's some help on the bottom of this page.
Special thanks to Heracleum#1208 on discord for helping with the code.

Cart #onebitspritesalgorithm-3 | 2022-07-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4


Documentation:
Use 4x more sprite memory if your sprites are 1-bit
16 colors / 2 colors
1 sprite / 4 sprites
256 sprites / 1024 sprites
To draw your sprites, you'll have to use specific colors
Each color marks different sprites from 1-4, some of them mark more at once:
Pixel color in spritesheet/which sprites will be marked by color in that spot
0/none
1/1
2/2
3/3
4/4
5/1,2
6/1,3
7/1,4
8/2,3
9/2,4
10/3,4
11/2,3,4
12/1,3,4
13/1,2,4
14/1,2,3
15/1,2,3,4

P#109460 2022-03-31 09:17 ( Edited 2022-07-01 09:00)

[ :: Read More :: ]

This game is a funky experience that you will only experience once in your life.
Hit children in the head using shovels in this game!!!
Earn money, hit more children, earn more money!!!!!

PCM samples by @bikibird

Cart #hitnrun-3 | 2022-03-30 | Code ▽ | Embed ▽ | No License
4

P#109119 2022-03-24 20:26 ( Edited 2022-03-30 20:24)

[ :: Read More :: ]

I've recently started working on my first game. It currently has no name but it's about balls so for now it'll be referred to as BallGame. Your objective is to dodge balls and survive the longest.

Cart #ballgame-1 | 2022-02-19 | Code ▽ | Embed ▽ | No License
2


Keep in mind that the game will receive updates very soon and the following features are planned:

  • Power-ups
  • Actual music
  • Changing background based on score
P#107058 2022-02-16 20:27 ( Edited 2022-02-19 22:08)

Follow Lexaloffle:          
Generated 2024-03-28 09:11:06 | 0.127s | Q:64