Log In  

BBS > Community Superblog
All | Following | GIFs | Off-site

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

2
1 comment


Loop Dude out now on Lexaloffle!

Cart #l00p_dude-0 | 2022-12-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
20

Hey all!
Sorry for the long wait! I had been meaning to publish this cart to these forums, but I hadn't remembered to do so until now.

It's been more than half a year after its debut in Black and White Jam #8 on itch.io, and there's really no excuse as to why it took so long for me to publish it here. While the game only placed about 51/344 overall in the jam results, I'm still pretty proud of it's placing in the "Gameplay" category: 16/344! That's pretty high considering this was my first ever game jam, and I'm looking forward to doing another one someday (when I find time, of course).

The gameplay is simple: It's a puzzle platformer with a grab feature inspired by Super Mario World. The game jam's theme was "Loop," but I'll leave you to finding out how I incorporated the theme! :)

[ Continue Reading.. ]

20
7 comments


Cart #strangersagain-0 | 2022-12-15 | Code ▽ | Embed ▽ | No License
15

I was going to wait to post this until the weekend, but I have no self-control. 😅 Enjoy the rest of your week, everyone!

15
4 comments




Cart #cookieclicker-1 | 2022-12-16 | Code ▽ | Embed ▽ | No License
2


A demake of Cookie Clicker I made to practice making games in pico-8.
Update: Made cookie bigger, added animations, added sounds, added music, added "mini cookies".

2
4 comments


Hello.

This is what I hope is a pretty simple request, @zep.

Currently if you click PLAY on any Pico-8 project included in a BBS post, it is up to the user, me, to manually scroll the screen so it all fits as it can definitely be just half-on the screen.

Could you please automatically scroll and center the Pico-8 window when you click the PLAY button so we don't have to ?

Also to have an option to sleep or not. That is if the cursor ever leaves the Pico-8 frame while being run from a BBS, it could go silent and freeze up or run as normal, through user configuration.

Thanks !

1
0 comments


Cart #jelpilvl2-0 | 2022-12-15 | Code ▽ | Embed ▽ | No License
11

11
2 comments


Currently doing some prep work for a video. Went through the changelog and I wanted to report two issues.

  1. I noticed this change in v0.2.4c
Fixed: exported label alpha is 0 for colour 0

Seems like this bug persists. This is what the Porklike cart image looks like exported with v0.2.5e

  1. It is possible to export a cart image that features "secret" colors. However, this doesn't work in reverse. If you re-import that very same file the "secret" colors revert to the default palette. Would love for this function to support the full color range.

left: Shape of Mind cart image exported in v0.2.5e
right: what the p8.png looks like if you re-import that same image

Obviously, not a high-priory issue. But might be worth looking into at the next convenient opportunity.

2
0 comments


Cart #santascouts-5 | 2022-12-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
13

This is the year you find out if Santa is really real. You and your siblings are staying up late to finally get proof. The light are out, but you're not scared!

Game Play

Requires mouse. Hold down left mouse button to turn on flashlight. Drag mouse across screen to catch Santa in the act. Press ❎ to snap a picture.

Credits

Up on the Housetop composed by Benjamin Hanby
Midilib flute by @ericb https://www.lexaloffle.com/bbs/?tid=49487
Flashlight effect informed by @Krystman https://www.lexaloffle.com/bbs/?tid=46286
Fizzle fader borrowed from @DrPete https://www.lexaloffle.com/bbs/?tid=29862
Everything else by @bikibird

Created for the

[ Continue Reading.. ]

13
3 comments


Cart #chatgpt_chase-1 | 2022-12-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

My second ChatGPT game.
I will note any changes I made to its code but otherwise, all code and comments were created by ChatGPT with prompts in order listed.

Prompts:

  • Pico-8 basic game code
  • Add player using pset, with movement control
  • Add enemy at random spot at the edge of the screen, enemy should attack player within 30 pixels
  • Player shoots at enemy using pset
  • Enemy moves toward middle of screen
  • What should I add to my game?
    • It told me to add player and enemy health text display and something to happen when player or enemy dies
  • Add health display
  • How can I improve this code?
    • It said:
      • Add more enemy types, each with their own behavior and appearance. For example, you could add a faster enemy that moves towards the player even if they are not close, or a stronger enemy that takes more hits to defeat.

[ Continue Reading.. ]

1
3 comments


Hello.

As I'm experimenting with 8-bit compression, I came across an anomaly that I feel deserves some attention.

Try this code:

cls()
a=chr(6)
b="⁶"
?ord(a)
?ord(b)

I created the ⁶ by typing in immediate mode, printh(chr(6),"@clip") and then in the source-code pressing CTRL+V.

My question is how can BOTH of these be the same character and - is this an error of some kind ?

Because if you type out in immediate mode, print(chr(6)) you won't get that symbol back. You can only get that symbol if you use printh()

Because if for some reason this is correct, it means that you are NOT saving a single byte per character in your source-code, that you are in fact using an extended unknown set to create that special character of 6, yes ?

The bug is this. You cannot get a visual for printing a character < ASCII of 16, however you CAN if you transfer it solely to the clipboard and then use CTRL+V. There is still no way to print it. It should appear either way you access it for output or at least give you an option of doing so with an obscure poke() or direct extcmd().

[ Continue Reading.. ]

1
10 comments


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

5
2 comments


[sfx]

Cart #hobenibeju-0 | 2022-12-15 | Code ▽ | Embed ▽ | No License
11

Earthbound-inspired battle music.

11
1 comment


Previously, gonengazit found some infinite token exploits here and zep fixed them, but looks like they're not all gone yet - I stumbled upon one that still happens:

x=[[[[]]
 put your infinite tokens here...
--]]

Seems like it happens because pico8 supports recursive block comments, and uses the same code to also parse long strings recursively.

But lua then parses the long string non-recursively and executes the code that pico8 thought was part of the string.

Pico8 probably should only parse block comments recursively, not long strings.

5
2 comments


Hello.
I did a fresh install of PICO-8 0.2.5E. I then ran `INSTALL_GAMES".
"Frog Home" has a syntax error and can't start.
See on the cart page: https://www.lexaloffle.com/bbs/?tid=2796

Looks like local dy+=... should be replaced with dy+=.... Did something change with how PICO-8 processes locals?

1
3 comments


Port of PICO-8 Celeste to Retro Gadgets

Retro Gadgets is a video game about building all sorts of retro-styled devices with all the clicky buttons and other goodies, and I noticed two things:

  1. The screens have a square aspect ratio
  2. The CPUs are programmed with Lua

Commence bad idea.

After a week or so of borderline masochism, I managed to port PICO-8 Celeste to Retro Gadgets using the original Lua code, spritesheets, music and sound data, along with writing some quick scripts to do syntax conversion from PICO-8 Lua to standard Lua, and to get the map and flag data out.

The entire game is beatable from start to finish, and functions identically to the PICO-8 version apart from minor visual quirks.

Retro Gadgets: https://store.steampowered.com/app/1730260/Retro_Gadgets/
My Celeste gadget for Retro Gadgets: https://steamcommunity.com/sharedfiles/filedetails/?id=2899096562

Technical details:

  • Partial reimplementation of the PICO-8 API (only the bare minimum Celeste requires)

[ Continue Reading.. ]

4
6 comments


Out of curiosity, I was testing to confirm that the new limit on length of audio recordings via extcmd("audio_rec") was per-instance and not per-session ... and discovered that the length of recording I got was 2 minutes instead of the 8 minutes listed in the v0.2.5d changelog.

An 8-minute limit makes sense to me but a 2-minute one doesn't, so I'm assuming this is an error of some sort.

edit: confirmed fixed in v0.2.5g.

2
2 comments


Revising my previous post and reopening as this now does seem like some kind of bug introduced in 0.2.5d/e.

On PICO-8 0.2.5e Raspberry Pi build running on EmuELEC 4.6 on the Gameforce Chi, select any local PICO-8 game from the game collection. You hear the PICO-8 startup sound and can even control the games (verified by pressing X to start a game and hearing the game music/sounds), but the screen on the Gameforce just shows "Loading..." even though everything is clearly loaded.

Originally I had marked this as not a PICO-8 bug, but it does now seem to be a bug introduced in the latest version. I first rolled back to 0.2.4c, which was the version I had been running previously, and it worked fine. Then I updated to 0.2.5c, and that also didn't exhibit this behavior. Updating once again to 0.2.5e reintroduces this behavior - games load, startup sounds play, game controls work, pause menu works, but PICO-8 is not drawn to the screen.

I'm not sure whether this is specific to EmuELEC with the Raspberry Pi build or if it's also an issue running on a Raspberry Pi (my Pi is currently in storage so I can't test it). Happy to try & dig anything out of the EmuELEC log files that might be helpful for debugging!

4
35 comments


Cart #puzstelstorm-1 | 2023-12-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

Puzstel Storm
A match-3 puzzle game featuring Pastel Storm and friends.

How to Play

Use the arrow keys to move the cursor and press Z to swap tiles.

Arrange the tiles to create matching groups of 3 or more.

After every 5th swap, the matching groups will break, awarding you 5 points per tile.

The remaining tiles will fall and new ones will enter from the top.

Chaining

If the falling tiles create a new matching group, a chain starts. A 2-chain is worth double points, and a 3-chain is triple points etc...

[ Continue Reading.. ]

7
4 comments


Cart #mittens-7 | 2022-12-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
22

~Mittens~

A City Park Snowglobe by ohhcurtains
A link to play the game on itch.io

Feed the birds, sit on benches, and search for your grandson's lost mittens.

Relax and explore a pretty pixel-art park underneath a flock of cardinals which display flocking behaviors.

Created for the Advent Calendar Jam 2022.

~Controls~

⬆️⬇️⬅️➡️: Walk
🅾️: Throw Bread
❎: Confirm/Interact

~Thanks~

bikibird
TheTomster
tinyevilwizard

22
8 comments




Top    Load More Posts ->