Log In  

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

Cart #looongbird-0 | 2022-02-19 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
9

9
8 comments


Cart #warokonugu-7 | 2022-03-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

What is it about?

Juicy Fruits is a game about getting as many fruits as you can before dying. You select your character
[8x8]
and jump into the world to dodge pesky ants
[8x8]
and feast on delicious fruits

[ Continue Reading.. ]

1
2 comments


This is a Rubik's Cube scrambler made for a 3x3x3 cube.

Cart #jimahipawi-0 | 2022-02-19 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1


Use the ⬆️⬇️ keys to change the scramble length.
Use the ❎ key to re-scramble.

1
0 comments


Cart #pico_garden-5 | 2023-09-04 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
8

Pico Garden is a slow-play, low interaction, screen-saver game.
It features a garden that evolves based on Conway's Game of Life.
There is some additional randomness and (minimal) player interaction.
It is a game for dreamers, grinders, slackers and thinkers.

The latest version adds an adaptive, evolving music track.

You do not have to do anything. Your garden will grow by itself.
However, you can occasionally tend your garden if you want to.
If you time this carefully, this will revitalise it so you can enjoy it for longer.

You can use the up and down keys to speed-up and slow-down time.
You can use the left and right keys to change the view.
There's even a fancy plot that shows how well your garden is doing.

[ Continue Reading.. ]

8
2 comments


Cart #mimic_111-0 | 2022-02-19 | Code ▽ | Embed ▽ | No License
16

A short puzzle game where you mimic animals to take their form.
11 levels + one secret. About half an hour of gameplay.
Progress is saved.

Arrow keys to move
X to restart the level
P to skip levels (not recommended)

https://sourencho.itch.io/mimic
https://twitter.com/sourencho

republished under new account

16
7 comments


Cart #digdig-4 | 2022-02-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
13

Currently working on this mining game - happy to hear some feedback if you play :) Still a lot of work to be done and a lot of ideas in the pipeline.

Just gotta dig out some gems and sell them at the shop / upgrade screen to purchase consumable items and permanent upgrades. Your battery will recharge automatically and you will sell your gems automatically when you surface.

LADDERS and TORCHES are VERY IMPORTANT! Without ladders, you will get stuck. Without torches, you can not see where the gems are.

IF YOU GET STUCK, PRESS ENTER THEN "RESCUE" - this will reset your inventory and bring you to the surface

Currently you can dig down 200 meters. The rocks get harder to drill at 100m and below. More valuable gems are deeper in the mine.

[ Continue Reading.. ]

13
18 comments


Cart #picoris2dx-2 | 2022-02-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

Picoris 2 DX

A modification of @MarkGamed7794's Picoris 2 with some audio changes (I was messing around and happened to reverb the audio and do some other weird effects, and I liked it so I kept it) and an updated title screen. I hope to later on include more modes and an entirely new UI to differentiate the original from the Deluxe modification.

7
8 comments


Cart #voroni_gen-2 | 2022-02-19 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1


Early wip voroni generator - will probably add settings to customise it while running the cartridge as right now the settings are set in stone.

Changed up title screen a little bit and changed the settings somewhat.

1
0 comments


Cart #bulletpoweredtower-0 | 2022-02-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

An updated version of the game I made for the "Mini Jam 98: Empty"

2
0 comments


Hey @zep not to bug you too much with bugs I keep finding but in latest version when I put "ノ" in a error msg and tried to copy it to clipboard (On Mac so cmd+c) it failed and just replaced my clipboard with \0 or empty or whatever (correction: kept clipboard the same. did not over write it with a terminal or whatever it's called.),

I assume this isn't supposed to happen? wonder if it's a issue with ノ being utf8 or whatever.

Anyways thanks if you read this, sorry to bug you... for like the 3rd time with bugs

1 comment


Cart #lynxkite_interview_20220218-0 | 2022-02-18 | Code ▽ | Embed ▽ | No License
8

My first PICO-8 game! I've never even used Lua before, but it was a joy. I love how it takes away a lot of time sinks typical in game making. "What palette do I use?" "How do I store the images?" etc. I even enjoyed the built-in text editor for some reason. I will certainly make more carts!

I made the music using all 4 tracks. Now I wonder if this is a mistake? When I play sound effects over it they compete for the channels and it sounds glitchy. How is this usually handled? Use fewer tracks?

8
7 comments


Cart #kifakegobi-8 | 2022-02-19 | Code ▽ | Embed ▽ | No License
1

Collects all the Magical Coins to save your beloved.

But be careful there are a lot of traps waiting for you.

1
0 comments


Cart #dqvbattle-0 | 2022-02-18 | Code ▽ | Embed ▽ | No License
6

This took me a while to complete (and technically it isn't the full song) but I wasn't able to finish it because of the pico8 SFX limit. If I knew how to compress audio then I could've made it longer, but that might be an excursion for another day. Anyways, Enjoy!

6
0 comments


Cart #ninjaproyect-0 | 2022-02-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA


Hello :) my first prototype

0 comments


I noticed that split() splits the table at the first character if you use a separator of more than two characters.
Is it a bug or a specification that split() cannot be used with separators of more than two characters?

foreach(split('123456','45'),print)
--123
--56 (Expect only :6)

Thank you.


If there is no limit to the number of characters in the separator, string replacement can be implemented in a compact way. (as in replace_short())

function replace_short(s,f,r)
  return join(split(s,f),r or '')
end

-- join() is custom function

function replace(s,f,r)
 local a=''
 while #s>0 do
  local t=sub(s,1,#f)
  a=a..(t~=f and sub(s,1,1) or r or '')
  s=sub(s,t==f and 1+#f or 2)
 end
 return a
end

2
10 comments


Cart #nuzubemora-28 | 2022-09-14 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

Full Release

--controls
X = select units and place them
C = start battle, back button (from examine, cancel summon)
arrow keys

--added dmg done to UI
--bosses now have themed decks (still need some balance tweaks)
--added save system now. use trashcan on home screen to delete save

beta phase is nearly finished. assume some bugs, let me know in comments if anything breaks or if any abilities don't seem to be working right. also card balance feedback is welcome, please note some cards are bad on purpose to act as filler

features

  • auto battler deck builder
  • deck editing
  • change screen via the bike
  • save system (after battle, after editing deck)

[ Continue Reading.. ]

4
0 comments


Here is a small little collab project with my friend Scratch.

This has been a fun project and i feel like i've learned a lot!

My first big(for me) pico 8 project!

I plan to add more to this project later, but for now i'm dyin to share.
<3

Cart #mowadazuti-0 | 2022-02-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

4
3 comments


FLASHING LIGHTS WARNING!!

Cart #circledance-0 | 2022-02-16 | Code ▽ | Embed ▽ | No License
6

This started as a sketch for a tweetcart that slowly evolved once I realized the potential for emergent behavior. At some point I messed around making music for the visuals since I've never even touched the music side of pico-8, then both the music and visuals started to influence each other.
Each run of the program has unique visuals but you really wouldn't be able to notice.
Hope you enjoy.

6
1 comment


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
2
2 comments


Welcome to Rescue Blob! You're a blob and you have to save your buddy from the evil Oola Aliens.

You need at least 15 coins to survive a death 💀.
Try to collect the 2 existing trophies 🏆.

Update: Working on a new physics engine, it's still unfinished.
(I just made it change the x by 0.22 instead of 1, but then the collision function doesn't recognise parts of blocks)

Cart #rescueblob-7 | 2022-02-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

Here is the one with the old physics engine:

Cart #rescueblob-6 | 2022-02-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

[ Continue Reading.. ]

5 comments




Top    Load More Posts ->