Log In  

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

Cart #gowayukeba-0 | 2022-04-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

This is my school project "Fruit Man: The Man in Search of Fruit"

Controls:
Left Arrow - run left
Right Arrow - run right
Up Arrow - jump
Down Arrow - drop through platform
x - open doors
left arrow + right arrow + x - return to menu

Collect all of the fruits in the level in order to continue through the door at the end of each level.

7
4 comments


Cart #farlandv2-0 | 2022-04-10 | Code ▽ | Embed ▽ | No License
51


Farland v2 as the name implies is a sequel to my first ever mod Farland. This mod is primarily a map mod like the original although there's some new mechanics, music (thanks RubyRed), etc. If you haven't played the original Celeste classic before playing this than I highly recommend it as some of the later levels may prove to be very challenging without previous experience.

Controls:
Arrow keys - Movement
Z/C - Jump
X - Dash

Huge thanks again to RubyRed for making the entire OST of the mod, and i want to give thanks to Maddy thorson and Noel berry for the original

[ Continue Reading.. ]

51
45 comments


PICO-8 0.2.4c is now up on lexaloffle, Humble, itch.io, and for PocketCHIP.

This is mostly a bug-fixing update; you can see the main 0.2.4 change notes in the 0.2.4 thread.

URL Cartridges

With the release of PICO-8 Education Edition, it is now possible to encode cartridges into a 2040-character URL that runs it in a web version of PICO-8's editing tools. Only the code and graphics sections are stored.

> SAVE @URL
COPIED URL TO CLIPBOARD
265 / 2040 CHARS

Tiny Cartridges

When exporting cartridges to .p8.rom format (the raw 32k block of data that is encoded inside .p8.png argb data), 0.2.4c allows only the code section to be stored using the -t (for tiny) switch:

> EXPORT -T TINY.P8.ROM
WRITING 154 BYTES (CODE ONLY)

You should get a file that is exactly as large as the compressed code size reported by INFO. When using LOAD, that file will be loaded into the code section, and the other sections reset to their default states.

There isn't much practical use for tiny .P8.ROM files, but I think it is nice to be able to store a tiny program in its true tiny form on disk.

On the subject of tiny cartridges, for those making

[ Continue Reading.. ]

32
18 comments


Cart #loop-4 | 2022-04-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
39


Made for Black & White #8 game jam.
https://kreyk29.itch.io/loop - Page on itch.io!

v4

What's new:

  • Now you can't proceed to level 33 (which doesn't exist) after beating the 32nd one. Thanks to @kirbofan !

Special Thanks to:

  • Mafk, Veemonic (logo design help);
  • merwok (level picking cursor help);
  • Mrblackcat (ok);
  • Gabi King (help with music).

Controls:

  • Left/Right/Up/Down: Move;
  • X: Rotate pipe/Confirm;
  • Z (O): Go back.

How to play:

  • Rotate pipes until they are all connected.
  • Pipes have different types, each type should be connected with the pipes of the same type.

Features:

  • 32 levels to play with 3 types of pipes;

[ Continue Reading.. ]

39
7 comments


Cart #gakebidofa-0 | 2022-04-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6


I made this... with my hands. oh no.
well, at least I have hands.

anyways, enjoy this visual. You can look at my code if you want. There are comments aplenty

6
3 comments


Cart #wudnonufu-1 | 2022-04-10 | Code ▽ | Embed ▽ | No License
1

My new sokoban game! involves time travel, has 13 puzzles. I hope you enjoy!

1
0 comments


Cart #amongusawesome-0 | 2022-04-09 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


this is just my really bad joke test game lmao

2
3 comments


Cart #nemonemo2-1 | 2022-09-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
45

My 1st game's next version.
I prepared 50 puzzles that you can solve more interstingly.
UX has also been improved to make it easier to play.
Enjoy please~

The music was composed by Gruber Music.
(Pico-8 Tunes Volume 1)

CRT Version
https://seimon.github.io/nemo2/

45
11 comments


On a particular Linux system I was recently using wget was not installed by default. Splores in game message was "could not connect to bbs" which led me down a rabbit hole of network checks until I noticed the wget missing error in the terminal. I was running via a pico8.desktop entry without the terminal originally.

Could curl be used as a fallback? Running "curl -L -O" can usually be used as a fallback in many cases. Better yet just use libcurl in the compiled binary and then you don't need wget or any external tools.

Thanks!

0 comments


@zep

Hey! Remember when I suggested putting next in the globals, since we could get to it anyway by doing next=pairs{}? You did! And that's been great!

Would it be okay to get inext the same way? It seems to be present, since I can get it by (similarly) doing inext=ipairs{}, and it seems to work the same way, just limited to index,value instead of key,value.

It's just not officially exposed.

I'm asking because there's a token saved when you switch from the first to the second implementation here:

for k,v in pairs(t) do ... end
for i,v in ipairs(t) do ... end

-- these are a little less clear to the reader but they work the same and save a token
for k,v in next,t do ... end
for i,v in inext,t do ... end

Technically it also shaves a couple of cycles off of the loop setup by inlining the return tuple from pairs()/ipairs(), but it's really the token savings that would be handy in some cases.

1
5 comments


Cart #mandelbrot_splorer-0 | 2022-04-08 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

Just bought pico-8 and worked on this as my project for the week.

6
2 comments


hi so i am making a game, and i got unclosed function runtime error attempt to call a string function

i literally just learned lua and im brand new to pico 8 can someone help explain how to fix it?

2 comments


Cart #dcraft-2 | 2022-04-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

D. Craft is a P. Craft and DeFacto mashup, build a spaceship to escape the planet!

5
0 comments


Cart #clubpenguin-1 | 2022-04-07 | Code ▽ | Embed ▽ | No License
22

I made this in PICO-8 Education Edition during class and finished it afterwards lol
Original penguin sprite by Meep

22
2 comments


Cart #frombeyondtheoortcloud-0 | 2022-04-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
19

A space exploration adventure in the Solar System

Features:

  • The Solar System with planets, moons, space stations and asteroids
  • Simulation of gravity and orbital mechanics
  • Landing, docking and interplanetary travel
  • A space adventure with secrets to discover

How to play:

  • Please refer to the Astronaut Handbook for controls, UI info and a guide to space manoeuvres:

Download handbook in PDF format

Quickstart:


Controls:

  • up: open control panel
  • down: toggle time warp
  • left/right: adjust zoom

  • X+left/right/up/down: pan view
  • X double tap: recenter view

  • O+left/right: rotate spaceship
  • O+up/down: main and reverse engines

Open the control panel. Use left/right/up/down to navigate. Move to the ORBIT tab. Hold O and press right until TASK tab is visible. Read the message. Go and explore!

19
7 comments


Cart #numegibas-0 | 2022-04-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

2 comments


Cart #rahagebihe-2 | 2022-04-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

This is my first game on Pico-8. I find that Pico-8 can be a useful training before starting the real retro gamedev.

Red vs Blue Tic-Tac-Toe. A simple crosses-noughts game between two players: Red and Blue. In this first version you always play as Red and you always start first.

Update 2022-04-10:
AI no longer plays randomly

1
3 comments


After modifying the code I got rid of the error message however now the problem is that its not printing

Code:
h=7
t=64
if h < 23 then
print("to much food",t,t,0)
end

Info:
h=7 it can be upped by 1 when x is pressed and lowered when z is pressed
if h reaches 23 or 7 it will say at that sprite

1
9 comments


I need to print some text but it say that Syntax error and Print(to much food,64,64,7) ')' expected near much
Please help me
Code:

print(to much food,64,64,7)
end

2 comments


v1.1.2 update: added loop jump hotkeys (v1.1.1) and fixed a crash bug.

RP-8 is a synthesizer and groovebox inspired by Propellerhead Software's classic soft synth, ReBirth RB-338. It has everything you need to make entire tracks: two paraphonic synthesizers, a drum machine, a pile of effects to process your sound, and an integrated song mode sequencer to pull everything together. The audio is lo-fi, 8 bits at 5.5kHz, giving the output a distinctively crunchy sound.

If you're nostalgic for the early era of soft synths, a fan of minimalist computing, an acid squelch connoisseur, or just someone who likes to discover new sounds: I made RP-8 for you.

You can find this cart, including native builds, at https://luchak.itch.io/rp8, or try it out below. Note that this cart works much better natively than on the web - see the Web section under Compatibility Notes below for more info.

Cart #rp8-23 | 2023-11-04 | Code ▽ | Embed ▽ | No License
71

[ Continue Reading.. ]

71
37 comments




Top    Load More Posts ->