Log In  

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

Cart #54477 | 2018-07-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA


[i]For years, the development of PICO-8 cartridges has been restricted to those elite few who have knowledge of the arcane "Lua" programming language. Well, ladies and gentlemen, I am pleased to inform you that this is no longer the case! This PICO-8 cartridge contains within it an Integrated Development Environment for a language that anyone can learn. When the language first appeared as P'' in 1964, it lacked the necessary i/o routines to become popular; but thanks to some recent extensions to the language (as well as a little re-branding) it has become instantly recognisable to programmers all over the world. The language has just eight simple commands that anyone can learn in a matter of minutes -- soon, you too could be writing software for the PICO-8!

[ Continue Reading.. ]

0 comments


Cart #54478 | 2018-07-28 | Code ▽ | Embed ▽ | No License
5

A short litttle "game" about a roomba in a decaying world. I made it while thinking about the short story, There Will Come Soft Rains, by Ray Bradbury. In this game there's really nothing to do but watch it happen. You control the Roomba, but that's it.

5
5 comments


Cart #54467 | 2018-07-27 | Code ▽ | Embed ▽ | No License
3

Description

It's snake, but fancy looking! Eat the apples and help the snake grow.

Instructions

Left Key and Right Key to change the angle of your snake. O Key and X Key in menus to select options.

Version

The current version is 1.0.2 and features the following changes:

+fixed an issue that allowed the apple to be placed in impossible locations on level start.

Previous versions can be found below:


Cart #54466 | 2018-07-27 | Code ▽ | Embed ▽ | No License
3


+fixed a mistake that caused one level to be an instant failure.
+fixed endless mode allowing selection of duplicate maps.

Cart #54464 | 2018-07-27 | Code ▽ | Embed ▽ | No License
3


+release

[ Continue Reading.. ]

3
1 comment



I always forget exactly how sin/cos functions work in PICO-8, since they're different to normal math sin/cos. I made this cartridge as a quick reference to see how they work. I hope it helps someone!

4
0 comments


Cart #54416 | 2018-07-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments


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

Raise The Dead is an Action Platformer for the Pico-8 in which the player must help a recently resurrected skeleton escape from his crypt. Hop on the magic skulls floating throughout the crypt to find the key to each floor's door!

The purpose in developing this game was to both to learn how to make pico-8 software and as an attempt to design a game around a single gimmick; In this case, hopping off of enemy heads.

Controls

Arrow Keys - Move

Z key - Jump

Down Key - Fall through the thin wooden floors

Special Technique - Hold the jump button when hopping off of enemies to jump higher

Recent Version History-

Recent Version History-

Update 0.2 pushed!

Keyblock feedback greatly improved - I added a reaction on the keyblocks for when the player picks up a key and is able to pass through them. The coloring on this is temporary for right now; I'm currently just using palette swaps for the effect, but in further updates I would like to migrate these blocks to their own objects I can spawn to have greater control over the color
4 more floors!
Misc bugfixes and timing tweaks 

Special Thanks

mhughson - Advanced Micro Platformer - Starter Kit

https://www.lexaloffle.com/bbs/?tid=28793

viza - Advanced Particle System library

https://www.lexaloffle.com/bbs/?tid=1920

These were both immensely helpful as tools to help learn how some more complicated game programming subjects are tackled in pico-8; It's really nice to see people give to the community like this and I wanted to make sure they didn't go un-credited.

If you like this and want to see more, give me some encouragement by following me on my itch page or twitter!

https://secretbunta.itch.io/raise-the-dead (@TofuShopDev)

2
7 comments




What is this?

I plan to create a shmup for Pico-8, but I wanted an easy way to test different attack patterns. This started off as a simple toy to test creating a circle of bullets and expanded into a tool to play with several different variables in order to fine tune attacks.

What can I do with it?

  • Use the up and down arrow keys to navigate the menu. On each menu item press left and right to change the value.

!

[ Continue Reading.. ]

11
10 comments


Yep, that's what it's called. Sorry.

My first P8 game. Just a simple, straightforward platformer. Three worlds of three levels each. There's no story or anything (I barely managed an ending, and not just because of the token limit).

Cart #54395 | 2018-07-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
131

If anyone wants them, the unminified game, map editor, and other stuff are available here. They're pretty messy, but feel free to do whatever with them. Just be aware that most things "save" via printh. Not a great way to do things, but it worked out.

131
25 comments


Cart #54402 | 2018-07-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
16

Somewhere in New Jersey,
A pot of soil was left behind in a prison cell.
Suddenly, a plant springs forth!!

Help the plant escape.

Arrow Keys - Move the plant
Z+X - Reset the game

When you reset, you go back to your humble beginnings.
In a flowerpot, in a prison.

16
6 comments


I wanted to download an older version of one of my carts and didnt save the cart number or add it to my cart thread. I couldn't find a good way to navigate the BBS to find my old carts. So I downloaded them all (AFAIK) up to 7/22/18.
Here's a link to them all: Download

Let me know if I missed any.

1
10 comments



Hi ^^

I was stunned by the light effects of Dank Tomb but I wasn't able to understand how it works. (Before I've seen the hackernoon site).

Here is an attempt to run something similar on jelpi, but with another logic. The pro is that it could run with several sources of light at the same time, the cons is that it is way less efficient and it uses most of the SFX memory.
Maybe some basic games could still run it at 30fps, and maybe we could improve it a little.

The first step is done once at the beginning: we create a hashmap for the 16 possible colors and a level of light (between 0 and 4), the level 0 gives the normal color and higher level gives darker colors.
As a peek in the memory gives 2 pixels at once. I've made a hashmap for the 1616 possible colors and the 44 levels of lights.

Then in the _draw function, I paint the light sources, I first paint the screen to the color 4, the darkest level, so all is in the complete dark. Then I draw some concentric circles with colors 3, 2, 1 and 0 at the position of the player.

Once it's done, I copy all the screen memory to the adress 0x3E00, it uses a big part of the SFX memory and all the user memory.

Finally, I do the normal drawing of Jelpi and as a post process I peek every pixel of the screen and the light level and poke it with the colors taken for the hashmap.
It gives what you could see in the screenshot.

I don't know if we could improve it more ? Maybe by restricting the loop on the pixel on a smaller area and painting the rest in black ?

1
1 comment


Update : I don't think my cart is very usable. Possily math issues and globally unoptimized process won't make it a decent base for games or sketches. I'll hold further dev of it for now. Check instead freds' version istead, it seems pretty more promising Here be dragons.

Hello everyone, I'll be posting my 3d (+extra) toolkit here. Been a while I haven't touched it until a few days ago. I could even optimize it further than before (at the expense of a few things).

The cart is a basic demo of what it can do, I'll be writing a few more explanations (and a link to a Blender export tool) later, if you don't mind.

What's supported (or inside the pipeline):

  • wireframe/flat/light shading (ambiant+light power+light direction)
  • backface culling
  • zsorting (thanking a few people for offering good heapsorts)
  • Translate/Rotate/Scale per object
  • basic vector/matrix library

What's not supported

  • Proper frustrum culling (put a mesh behind the camera and see the disaster)
  • Texturing

What's maybe planned

  • Mesh compression (not yet planned)
  • Vertex keyframing (still wondering how to make it the quickiest)

Extra features

  • The water/reflecton effect you all loved in my demos (with palette indirection)
  • record utility to quickly record a number of frames

[ Continue Reading.. ]

10
3 comments


Cart #54364 | 2018-07-23 | Code ▽ | Embed ▽ | No License
1

For the POT-AU-JEU Gamejam
View on Itch: https://mobandon.itch.io/tiny-tiny-wish

1
0 comments


Cart #54353 | 2018-07-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

I've been using pico8 for some time now, but this is the first time I officially publish a cartdridge.
The game is based on a game I originally released for Commodore 64 computer, that was written in Basic.
It's basically a puzzle game whose purpose is to eat all the fruits on the screen and then move to the next screen.
The game is not finished and some levels are simply drafts, but fully working and can be completed.
I am very curious to know your opinions.

6
14 comments


Cart #54352 | 2018-07-22 | Code ▽ | Embed ▽ | No License

Description

You've stolen the blueprint to the most powerful weapon in the galaxy, and The Empire wants it back. How far can you make it?

Instructions

Directional keys to move.
Pick up loot to increase your score and powerups to repair your ship and improve your guns.

Version

The current version is 1.0.1 and features the following changes:

+fixed music not playing after beginning a game.

Previous versions are below.


1.0
+release
Cart #54350 | 2018-07-22 | Code ▽ | Embed ▽ | No License


[ Continue Reading.. ]

0 comments


Cart #54383 | 2018-07-24 | Code ▽ | Embed ▽ | No License
175

Cart #getoutxmas-0 | 2018-12-24 | Code ▽ | Embed ▽ | No License
175

The door is locked. You'll have to explore a dangerous dungeon full of traps and monster and find 6 lost gems to open the door and GET OUT!

Move : Arrow keys
O (Jump) : Z / C / N
X (Punch) : X / V / M
Dash : Right or Left + X

[i]I recently discovered PICO-8 and felt in love with the concept. Shortly after I made a mockup of a potential game and found an amazingly active community who motivated me to make an actual game. Here is it, hope you'll enjoy it as I do.

[ Continue Reading.. ]

175
20 comments


Cart #54317 | 2018-07-21 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

A Pico Matchy Puzzle Game

Controls:

X - Start
Z - Switch Jewels / Match 3+ Jewels
Arrow Keys - Move Cursor

2
0 comments


Cart #54310 | 2018-07-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

Pico Slot Action! Go Big or Go Pico!

Press Z or X to Spin!

6
1 comment


Cart #54303 | 2018-07-20 | Code ▽ | Embed ▽ | No License
4

~ voidfloating ~

n. floating around, avoidin' the void

use the arrow keys to move Randall

potions:

green - makes you strong
black - makes the void shrink
red - makes you weak

-note: this game may not be suitable for those with photosensitive epilepsy

4
3 comments


Cart #54298 | 2018-07-20 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3


Beatship is a test-your-luck rhythmic space shooter where shooting on beat allows you to use a powerful beam weapon but one misfire and your combo resets to 0. Do you play it safe and sit on the charge you've built up or risk it to restore much needed health? Leave the menu screen running for a bit to see an in game demo

The basic space shooter elements of this game's code were made using ztiromoritz's fantastic Pico-8 tutorial. The rest of the game was made for Yohahi's Floppy Jam. Please enjoy!

3
1 comment




Top    Load More Posts ->