Log In  

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

Cart #55011 | 2018-08-12 | Code ▽ | Embed ▽ | No License
2

My Ludum Dare 42 entry. AsterVoid is an Asteroids-style game with a twist: each destroyed asteroid leaves behind a "void" in space that you can't fly through. Dodge the asteroids and the ever-growing void, and try and rack up a high-score!

2
2 comments


Cart #55006 | 2018-08-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments


Cart #55004 | 2018-08-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

Hello! I just finished this for Ludum Dare 42 - my first finished cartridge! I've noodled around with p8 before but never really with any intent, and I gotta say this whole weekend has been a ball.

5
5 comments


A tiny 4K pixel game about surviving wildfires on a deserted island.

You have crashed your helicopter on a deserted island during a thunderstorm. Fortunately, help is on its way, if only the helipad was safe to land on.

view on itch.io

Cart #54998 | 2018-08-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

1 comment


is there a plan to add built in pico8 multiplayer using synced inputs?

basically it would be handled in pico8 rather than the cart.

it would allow players to connect to each other via ip or game uid and official lexaloffle connecting servers through the pause menu.

this might be the easiest way to build a multiplayer game since there would be no packets being sent besides the hard coded inputs.

networked inputs would be accessible the same way normal inputs are with btn(btn, player).

this would also make multiplayer games have not just networked players but local ones as well.
players count would be limited to the number of inputs pico8 has.

1
4 comments


Cart #54984 | 2018-08-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments


Cart #54974 | 2018-08-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

Collection of simple games.
Currently just Ping Pong.

1 comment


Cart #55058 | 2018-08-13 | Code ▽ | Embed ▽ | No License


New update with something to do! Can you get to 20? Comment if you did!
Arrow Keys: Up, Left and Right

Cart #54970 | 2018-08-11 | Code ▽ | Embed ▽ | No License

2 comments


does anybody have a good rspr(n, x, y, w, h, r, ox, oy, flipx, flipy) function to draw rotated sprites?
I need this to make my 4 player spaceship battle game.

22 comments


Cart #54925 | 2018-08-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

My first Pico 8 game: Collect fruits an avoid to collide with the electric eels.

1
2 comments


Hey folks!

Today I'm releasing a cool little lib for adding analytics to your PICO-8 game.

You might ask, "wat?" So lemme demonstrate with a quick video:

Essentially, it's a way to track what your players are doing, and to analyze that data afterward for insights. Are players discovering the secret power-up in my game? Are they dying too much, and quitting out of frustration? You can track all of that! And use that information to make your game's design better.

This library sends data to Segment, where I work as a full-time engineer. (I do PICO-8 development as a hobby.) Segment is a badass analytics product that forwards your data to hundreds of tools. For starters, you can turn on Google Analytics in Segment, but there are many other tools in the catalog you can check out.

To use it, head on over to the GitHub repo for instructions (https://github.com/segmentio/analytics-pico8). Using it looks something like this:

[ Continue Reading.. ]

5
1 comment




Hi, I made a game about garbage. It's helpful if you live in Portland! Otherwise, um?

(My first time uploading to the BBS, hope I'm doing it right)

3
1 comment


Cart #54912 | 2018-08-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

Just like the lady says, this program is ready to smash some bytes !!

Or to be more technical, DWORDS, where a single numeric value is saved in 4-bytes.

from the lab of dw817 comes a
new way of storing sram instead
of just with dget() and dset().

not all data that is recorded
needs to take 4-bytes per
variable leaving you only room
to store 64-numbers.

introducing "sram smasher."

a set of useful routines that
will squeeze your data into a
series of micro bits instead of
single fat 4-byte values.

safeguard ensures sram not
written to unless completely
without user errors.

(Demo values to test the functions is included)

2
0 comments


I'm working on a utility to help other programmers at the moment (including myself). I am using the compressor my "Image Compressor" uses for raw data but think I can do better.

Didn't someone make a compression program in PICO earlier that used the same fundamentals as PKZIP ?

And if so, does anyone remember where it went ?

8 comments


Cart #54899 | 2018-08-09 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

A 2D random walk. Press Z to reset.

At each step, each "walker" will move one step left or right, and another step up or down, with equal probability.

0 comments


Cart #54877 | 2018-08-09 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

A simulation of the Galton board. Press Z to reset.

At each step, each bean will randomly move left or right. The distribution of the beans when they reach the floor is given by the binomial distribution, which is an approximation of the normal distribution for large values of n (central limit theorem).

1
1 comment


Cart #55658 | 2018-08-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
21

UPDATE 2: I went in and added parallax scrolling! I'm very pleased with how it turned out. This will probably be the final update to the game, as I've now completed everything I was interested in doing.

UPDATE: Based on feedback, I've added the option to add a border or background around the minimap. The option can be seen in the pause menu (press []). I also added a sash that shows what level you're about to begin.

My first real Pico-8 game! It's a clone of the classic arcade game Bosconian, which has always been a favorite of mine. I'm really happy with how it turned out. There's a few things that I might eventually revisit, and the music is sort of terrible, but all and all not bad for my first fully fledged game.

X to shoot,

[ Continue Reading.. ]

21
7 comments


Cart #54859 | 2018-08-08 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

I know there was some talk earlier of the TIC-80 system. I said I thought their 5x5 font was pretty ugly. I still do. Here is what I think would be a better rendition, the font, in part, A-Z. Enjoi !

1
0 comments


I am definitely seeing a way to store more than 256-bytes at a time.

cartdata("mister_1")

for i=0,63 do
  dset(0,i)
end

cartdata("mister_2")

for i=0,63 do
  dset(0,i)
end

And then I'm greeted with this message:
CARTDATA() CAN ONLY BE CALLED ONCE

Really ... really ? I mean if you could have multiple Cartdata() commands you could save, well, gee, I don't know, 8192 bytes perhaps ??

Good grief. There's one things in setting limitations in a programming language for nostalgic purposes and then there's just outright imprisoning your data ... 😨

4 comments




Top    Load More Posts ->