Log In  

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

Cart #gemhoppico-0 | 2019-02-17 | Code ▽ | Embed ▽ | No License
2

2
4 comments


Cart #blastoff-14 | 2023-03-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
18

A game about rockets, for little and big kids. This is a one-button game with no possibility of failure.
Press X to skip the SPACE WALK.
See if you can activate the hidden autopilot for landing!

Change log:

0.2

  • Sound, stars, random birds, sky colours, tracking camera

0.3

  • Added a countdown! Player can tap UP or hold it.

0.4

  • Used fill patterns to dither the gradations of atmosphere.

0.5

  • Attract screen plays out an animation of astronaut getting on board.
  • Added states to complete the game loop, you can get to orbit and back.
  • Added SPACE WALK.
  • Added rocket heating up depending on reentry velocity.
  • Adjusted volume for less pew-pew and more engines.

[ Continue Reading.. ]

18
4 comments


Cart #derbyamplify-0 | 2019-02-17 | Code ▽ | Embed ▽ | No License
2

CAN YOU DEFEAT THE SKULL?

Kirby samurai clone by @krazl and @verdog.

2
6 comments


I see in the manual that Qubicle file format is supported for importing models, but I use MagicaVoxel on my computer and Particubes on my iPad, which use the same .vox format. (Spec: https://github.com/ephtracy/voxel-model/blob/master/MagicaVoxel-file-format-vox.txt)

1 comment


Cart #pugafufahi-0 | 2019-02-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
46


Inspired by an idea from JW of Vlambeer, I built this dungeon generator.

In short it adds a bunch of rooms on top of each other and then moves them randomly around until they don't fit any longer. Usually this makes for some very nice and organic looking scenes. This version also has a bunch of other parameters like wider door ways, interconnectedness, and decoration among others. The example in this thread randomises these parameters but in the code it is fairly easy to set them up to whatever.

I've tried to document it to a degree, so hopefully it can help out if someone wants to dive into my implementation. It should be said though that I primarily wanted to visualise the process and to look nice, not necessarily be the most efficient data structure. ;)

[ Continue Reading.. ]

46
7 comments


A starfield effect, inspired by the old Windows screensaver, though the style is more in line with Star Trek. Use up and down to increase and decrease speed, and press X to show stats.

I used nucleartide's Pico-8 snippets, specifically vec3 and pline(), to do the 3D projection. I was encouraged by reinvdwoerd's Perspective Lines and used his cartridge to figure out how to use pline().

To really get immersed, shout "increase speed to [warp number]!" as you hold the up key or "all stop!" as you slow down to zero.

Cart #starfield-0 | 2019-02-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

5
13 comments


Cart #dodge_1-0 | 2019-02-16 | Code ▽ | Embed ▽ | No License


Dodge is a fast paced reflex game. There is no end, you just have to survive the longest possible. Enemies move towards you and it's game over if they touch you, but they explode and give you a point if they touch each other.
There is a powerup (the ball with fire particles) that you can touch to destroy all enemies that are currently on the screen.
This game is still WIP and will be updated regularly. There will be music, better sound effects, updated graphics, and maybe even some more gameplay elements depending how far we want to go with it.

1 comment


Cart #gezwupes-0 | 2019-02-16 | Embed ▽ | License: CC4-BY-NC-SA
2


This is a short puzzle game based off of another puzzle game I saw, SPAB. The player's inputs affect the world as well as the character. I came up with some messy ways to make it work and would redo a lot of it if I made a more complete version.

If I do expand on this idea I see two ways to with it. Either a sort of action-puzzle game with fighting enemies and smoother movement, or a more complex puzzle game with much more responding environmental parts and maybe more rigid movement.

2
3 comments


Hey all,

A slightly annoying bit of Lua syntax is how verbose the anonymous function syntax is.

For example consider a function filter function that accepts an array and a test function that accepts a single element and returns true or false if the element should be kept. The filter function would then return an array of all elements for which the test function returns true.

function filter(array, test_fn)
 local ret = {}
 for elem in all(array) do
  if (test_fn(elem)) add(ret, elem)
 end
 return ret
end

So yeah a pretty straight forward functional programming paradigm that's easy to use and awesome.

It is especially convenient to use with anonymous functions where your test function need not be defined anywhere and can instead be defined inline with the function call. Here's an example that would filter an array to only even numbered elements:

filter({1, 2, 3, 4, 5, 6, 7, 8, 9}, function(v) return v%2==0 end) -- result: {2,4,6,8}

[ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=61932#p)
2 comments


HACK*MATCH

Cart #deadpixl_hackmatch_1-1 | 2019-02-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
19

Screenshots

About

HACK*MATCH is a mini-game in EXAPUNKS, a programming puzzle game by Zachtronics. When I first played the mini-game I loved it, and thought that it would work really well on PICO-8. This is my own version of the mini-game with some slight modifications.

How to play

The goal is to connect 4 or more of the same coloured piece. There are two ways you can do this, by either picking pieces up and putting them down in a different location, or by swapping two pieces, either the two above you, or the one you're holding and the one above you. The game takes some getting used to so it might take a few rounds before you're comfortable with the controls.

[ Continue Reading.. ]

19
12 comments


Thanks in advance for any help.

I have two Objects tabs in my Designer. Also, I am missing Fonts.

I am on a MacBook Air running 10.14.2.

Thank again!

5 comments


Cart #arcade_pong-4 | 2019-02-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


Welcome to my first game ever finished!

  • Controls
    • Player 1 -> E(Up) / D(own)
    • Player 2 -> Arrow Keys
  • Description
    • It is a simple PONG game that you can play alone trying to survive as long as you can or with a friend trying to beat him.
  • Special Thanks
    • Thanks to @Alfedi for finding bugs and giving me feedback <3
2
2 comments


Cart #zeldamos-0 | 2019-02-15 | Code ▽ | Embed ▽ | No License
7

Zeldamos is a Zelda-esque Engine similar in style to the GameBoy titles.
I will be updating this throughout to hopefully make an example dungeon with combat, puzzles, and a boss.

v1.0 --

  • 8-Way Movement
  • Screen Transitions
  • HUD
7
7 comments


using google translate

At the beginning of the year I started using PICO-8 when I found out that Celeste was born from such a simple concept.
The first thing I could discover using PICO is that you can export to html...

if you can use HTML you can visualize it directly on Android using a tool called WebView.

This is a step-by-step tutorial to use your PICO-8 cartridges on your Android phone, let's begin shall we?

What do we need:

Now we need to understand what we are going to do:

1) create an application on Android (the classic helloworld: https://developer.android.com/training/basics/firstapp/).
2) Add the WebView tool to your app (https://jgvcodigo.blogspot.com/2017/12/webview-android.html).
3) Add the controls on the html file of your cartridge.
You can use the following template and call your .js file:

[ Continue Reading.. ]

8
7 comments


Cart #pip13-0 | 2019-02-26 | Code ▽ | Embed ▽ | No License
39

A retro platformer where Pip, the tiny birb, must collect feathers to get strong enough to return to their nest and finish their nap.

Z/C to jump and airjump
X/V to short hop (on ground) and dive (in air)

Current version: 1.3, patch notes farther down in thread

39
17 comments


Hello, I saw in the new changelog that Voxatron can now run Pico 8 cartridge , I tried it on my version , but didn't find any "pico 8" section , I tried opening a .p8.png in the designer , but it just crashed the console. This feature really hyped me , so I'll be more than happy to try it , thanks to anyone who read me.

1
2 comments


On Safari for Mac, the date string arguments to the get_relative_time JavaScript function are not considered to be valid dates. This causes every post to show "NaN years ago".

Bug showing NaN years ago:

Safari console showing Invalid Date:

2 comments


Cart #descenders_v9-1 | 2019-02-16 | Code ▽ | Embed ▽ | No License
6

updated: added ricochets / music / music toggle / screenshake toggle. use the 'return menu' to access the options.

z=shoot
x=jump
l/r=move left/right

get a high score! ammo is limited so be sure to retrieve your shots. chain together multiple kills with 1 bullet for score multipliers, and ricochet bullets off walls for bonuses.

some tips:

  1. bullets take on the left/right momentum of the player, so use that to line up shots!
  2. jumping can help you launch bullets higher!
  3. when bullets hit an enemy, their direction/travel speed is affected by the enemy movement. i.e a fast enemy moving left will knock the bullet left by a moderate amount and halt its upward momentum significantly.

[ Continue Reading.. ]

6
3 comments


Cart #ozarkrush-6 | 2019-02-15 | Code ▽ | Embed ▽ | No License
10

-

Save small town Ozark!

Play as ArgentBot v2.02, an old rusty excavation automaton who's the only hope for the small rural town of Ozark!
After Harold Pechengsky vanished deep underground, the town's last few residents jumped ship. Now Ozark is in danger of collapse! Dig deeper and deeper and bring back riches to rescue Harold and save the town! Buy, sell, recharge, and repair your way to mineral mastery!
Inspired by Schulles' "Utopian Mining". Play it on Armor Games!

Quick Guide

Energy-
Without energy, you can't mine and harvest minerals! Make sure to recharge often at the power plant.
The deeper you go, the more energy it takes to mine, so make sure to upgrade your battery consistently.

[ Continue Reading.. ]

10
11 comments


Hey, everyone! I'm a hobbyist developer who finds the concept of a "fantasy console" pretty interesting, so I made a little demo based on this game I made for a programming competition for CodeWalrus, which I also remade into an Atari 2600 game. I hope it looks and plays alright!

Cart #dishibitu-0 | 2019-02-14 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

3 comments




Top    Load More Posts ->