User Tools

Site Tools


programming:pico8:tips

PICO-8 Tips

When beginning with PICO-8, there are a few things to do in order to familiarize yourself with the console and get a feel for how it works:

While those resources are great, it's a lot of content to trawl through to find an answer. Even the Lexaloffle BBS can be daunting to find answers in, so this page will cover little parts of PICO-8 that might be easy to miss when you're eyes deep in Lua and just want a quick answer.

Publishing Cartridges

Text Label

The text label is the first two lines of comments in the code section. Many people put these as the first two lines of their carts, so they never forget. It will be displayed in the PNG image that represents your cartridge. Try to put the cart's title, its version, and the primary author:

-- blasterz r us v0.1
-- by genericman

Both lines support a maximum of 31 characters. If any special PICO-8 glyphs are used, each one takes up two character widths instead of one.

Image Label

Press F7 in-game to save the current screen as the cartridge label. Make sure you've saved your cartridge to a file or it won't work.

Pasting to the BBS

The BBS will accept any carts saved as .p8.png files, but also has a form where you can paste the contents. To do this easily, do save @clip in the command line once your cartridge is loaded. Then you can paste it into the form and publish to the BBS!

~~DISCUSSION~~

programming/pico8/tips.txt · Last modified: 2019-06-18 02:36 by zlg