Log In  

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

by wan
Cart #24253 | 2016-07-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
8

Game made in 1 hour for the One Hour Game Jam.
The theme for this week was "Do it quickly".

8
10 comments


Cart #24249 | 2016-07-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
9


Defend the Earth from a natural disaster: waves of asteroids are on a collision course and it is up to you to stop them! Space Guardian is reminiscent of classic arcade games like Space Invaders and Asteroids. What's your high score?

This is a port of my ludum dare 31 entry which you can play here. I might come back and add sound later.

9
3 comments


Cart #24235 | 2016-07-02 | Code ▽ | Embed ▽ | No License
1

Hit enemies with your arms.

cursor keys: Move
x: Start

TODO:

  • make it fun
1
0 comments



Small mod to Celeste for SecksWrecks' SGDQ run. It modifies the game so that if you complete a level without getting the strawberry, the level resets, just in case, since the run will be streamed live.

Posting it here so it can be found on splore, in case of technical problems.

Changes are here: https://gist.github.com/justinj/7b19cc0ef66f729eb60cc957cedc020e

EDIT: He ended up using the vanilla version of Celeste instead of this!

3
3 comments


Cart #24198 | 2016-07-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


A very basic test to get to grips with the editor.

2
0 comments


Cart #24182 | 2016-07-01 | Code ▽ | Embed ▽ | No License
7

mod of @justinjaffray's original hack made for me to practice individual levels with with slight edits to suit me.

E toggles loop mode
S and F scroll warp target level and D warps

7
1 comment


I am working on my first ever game, a gltich themed breakout, based on the Squashy from Pico8 Zine#1 and I am now working on making the glitch effects that will be part of the gameplay. What I have now is a way to add a static noise through pget and pset and this kinda corrupted VHS by using random values over x06000 with memcpy.

Memcpy is great for making random glitch effects. But what if we want to, for example, take something from a particular part of the screen and paste it another place we have chosen. Right now I am just doing a trial and error of values and if I get close, I call it a day... but I think there has to be a better way.

Basically, I am wondering if there is a way to find exact memory address of particular screen coordinates? Some kind of a map perhaps of x,y coordinates and memory values? Or even better... a formula that we can use to input x,y of source and destination that would return the memory values we can use memcpy on.

I am pretty sure that there has to be a some kind of underlying math that translates one to the other, but I am a noob, so don't even know where to start trying to back-engineer it.

Would such a map be possible, or would the memory values change depending on color of each pixel for example?

2
14 comments


If you type any letter into the editor or console then highlight it and press Delete, nothing happens. It should delete that character.

0 comments


NEW!!! BRAND NEW GAME FROM MYTHRIL STUDIOS!

Hi. My name is Rudlin. I'm the CEO/Lead Executive/Head Writer/Head Designer... of Mythril Studios. You get the point. I'm working alone.

About a week and a half ago, I released a prototype for a new game I was working on, set aboard a spaceship. It was to be a survival game, with waves of enemies coming at you from all directions. And the prototype, to me at least, was quite fun, and showed a lot of potential.

However, as I was browsing the Pico-8 BBS, I began to notice a trend. All the programs currently being released for this system are either short, "arcadey" games, or they are little experimental demoscene-type stuff. And while that's all well and good, the truth of the matter is I want a game that really shows off the Pico-8. Something that really pushes the system above and beyond what anyone thinks is possible. And, since at the time I didn't see anyone else doing anything like that, I decided I would be the one to do it.

Now, I am by no means a very skilled, or very experienced game developer. Sure, I've made a few short games, and most of them on other platforms, but I do have one thing going for me: history.

I am huge on studying video game history.

I have played the games of the past, I have studied everything about them, their sound, their graphics, their gameplay. I understand what makes these games tick, and can apply that to this project.

And what is the project, you may ask?

[b]

[ Continue Reading.. ]

1
7 comments


Cart #24113 | 2016-07-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
11

I was on the Pico 8 Slack channel and it was brought to my attention that Pico 8 does adorable special characters. I don't know if it's documented anywhere so I made a little cart to show them off. Who needs sprites and tiles when you have ASCII characters? :D

11
9 comments


Interesting discovery today: Because the latest version of pico8 supports more punctuation characters, it's now possible to encode binary strings as base64!

I prototyped this on pico8 0.1.8. By using this we can slightly improve the size of encoding binary data in text form, it's 1.33333x bigger compared to hex's 2x size. Granted, pico8 does some compression to the code, so not sure if the added entropy of packing things closer together will work in everyone's favor, but this is worth a shot. It won't be standard base64, because there's no distinction between uppercase and lowercase, but there's enough special characters to make up a custom 64-character dictionary for the encoding.

-- Set up the encoding/decoding lookup tables.
b64d={['']=0}b64e={}b64c='0123456789abcdefghijklmnopqrstuvwxyz-_+[]{}|:;=.<>?/~`!@#$%^&*()'
for i=1,#b64c do
local c=sub(b64c,i,i)
b64e[i-1]=c
b64d[c]=i-1
end

-- encodes a table containing 8-bit numbers (binary data) into a base64 string
function encode(t)
local s,e='',b64e
for i=1,flr(#t/3)*3,3 do
s=s..e[flr(t[i]/4)]..e[bor(t[i]%4*16,flr(t[i+1]/16))]..e[bor(t[i+1]%16*4,flr(t[i+2]/64))]..e[t[i+2]%64]
end
if(#t%3==1)s=s..e[flr(t[#t]/4)]..e[t[#t]%4*16]
if(#t%3==2)s=s..e[flr(t[#t-1]/4)]..e[bor(t[#t-1]%4*16,flr(t[#t]/16))]..e[t[#t]%16*4]
return s
end

-- decodes a base64 string into a table of numbers
function decode(s)
local t,d={},b64d
for i=1,#s,4 do
local x,y,z,w=sub(s,i,i),sub(s,i+1,i+1),sub(s,i+2,i+2),sub(s,i+3,i+3)
add(t,bor(d[x]*4,flr(d[y]/16)))
if(#z>0)add(t,bor(d[y]%16*16,flr(d[z]/4)))
if(#w>0)add(t,bor(d[z]%4*64,d[w]))
end
return t
end

-- testing it out
for i in all(decode(encode{1,2,3,4,5}))do
print(i)
end

[ Continue Reading.. ]

5
4 comments


Cart #24022 | 2016-06-30 | Code ▽ | Embed ▽ | No License
7

Unfinished submission for Star Trek Jam using Pico-8. Based on Oregon Trail.

First Pico-8 game —first game ever really. First game jam. Bit off more than I had time to chew! Looks pretty good, learned a lot. I will post the finished version when it is available.​

7
2 comments



Made this for Sophie Houlden's Star Trek Jam! It's just about playable, although there's plenty I'd like to change or add.

INSTRUCTIONS:

Map view:
Left/Right - select a planet
Z - travel to planet (this will cost the number of fuel displayed above the selected planet), or will beam you down to the planet if you have selected the same planet your ship is parked at
X - warp. If you have at least one green warp crystal, you can warp to the next system with X
Up - go to your ship's loadout. Swap your tools here or refill them
[having a drill is very useful for collecting crystals, it needs to be kept topped up]
The red matter will destabilise the current system, so don't spend too long in any system!

[ Continue Reading.. ]

26
16 comments


Cart #24007 | 2016-06-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

A chain reaction type game where you attempt to destroy nearly all the particles in the level.

Controls: Arrows to move, z to explode.

This is a demo, playable and (IMO) fun but it needs some polishing, most notably in the difficulty/progression. Adding more features to vary the levels would probably be a good idea.

Known bugs: Levels from about 8+ are not great, level 11+ is broken...

4
2 comments




0.3

  • Add of a high score and a virtual keyboard to type your name. Thanks to @afburgess

Cart #24639 | 2016-07-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

0.2 Change log:
Option menu to change

  • The speed of the snake, from 5 to 100 in % of the maximum speed.
  • The dash in % of movements which increase speed.
  • The grow in % of movements which increase size.
  • The control (2 directions, 4 directions or only one direction for the ones who like challenge) ^^

The apples are less likely to appears close to the walls

The snake is now green, which is more realistic. ;)

The snake start shorter and doesn't grow as much as before when an apple is eaten.

Fast restart.

Enjoy! :)

[ Continue Reading.. ]

4
14 comments


Cart #23992 | 2016-06-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
21

Still a WIP, needs sound and a difficulty curve, but let me know what you think :)

Had loads of fun making it!

dt

21
8 comments


Cart #23958 | 2016-06-30 | Code ▽ | Embed ▽ | No License
32

DASH and PUSH and DASH and PUSH and die... and DASH!!!

A dash & dash game made for the #mysticwestern gamejam!

It features a cowboy being pursued by some sort of mystic worm!

Get to the button to make the worm disappear but also make another one appear!! Your score goes up that way too!

The arrow keys / D-pad lets you move.
The Z key / C key / o button lets you dash.

Have fun and tell me what you think!

You can check out the game on itch.io too!

32
8 comments


Cart #23926 | 2016-06-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
14

Just a random noise generator.

14
3 comments


Cart #23913 | 2016-06-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

first submit! it's got to be a spiritual-mini-game of "Night Striker(TAITO/1989)"
have many things to be implemented/solved.

[control]
You only can move your car on/above the road :)

5
1 comment


Cart #23902 | 2016-06-29 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

Put this together based on another project (https://github.com/PROGRAM-IX/vectorwars). No sprites used whatsoever, all content is generated procedurally and drawn every frame. I love this kind of game, but thought it might be a little heavy for PICO-8. Apparently not, at least in this small version. I'll probably play more with this for other more complex games.

ARROWS MOVE

Z FIRES

PROTECT YOUR HOME

2
2 comments




Top    Load More Posts ->