Log In  

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

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


At 0x5f10..0x5f1f you can remap the screen palette. You can't change it to something other than PICO-8's native colors, but if you wanted to flash anything yellow you could do this in your draw:

    poke(0x5f1a, flash and 7 or 10)
    flash = not flash

This is handy if you need to cycle colors on parts of your screen that you can't afford to redraw.

It also might be handy for avoiding a lookup table if you were writing a demo that drew a grayscale image, because you could do this:

    poke(0x5f10, 0)  --black
    poke(0x5f11, 5)  --dark gray
    poke(0x5f12, 13) --gunmetal gray
    poke(0x5f13, 6)  --light gray
    poke(0x5f14, 7)  --white
    :
    :
    pset(x, y, intensity0to4)

Or similarly for large rainbow ramps like you'd use for fractals. No lookup table needed.

I hope this is okay to use. Zep? :)

3
8 comments


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


Just a lil' dragon curve with a nice transition thing.
It's not interactive or anything, but it looks kinda nice.

6
0 comments



better etchasketch! ~118 characters (110 w/o clear-screen or random color)

cls()
x=0 y=0
while 1 do
if(btn(0)) x-=1
if(btn(1)) x+=1
if(btn(2)) y-=1
if(btn(3)) y+=1
pset(x,y,7+rnd(9))
flip()
end
63
391 comments


This thread has moved to the completed version:
Underwatch v1.0

Any resemblance to existing copyrighted material is purely coincidental and unintentional.


Version 0.14

  • Balanced Robogirl's health and armor values
  • Added ability to open menu while respawning
  • Reworked Zinra Map
  • Reworked Cloud City Map
  • Adjusted flying character flight velocity

Version 0.13

  • Optimized to reduce tokens
  • Improved projectile physics
  • Improved performance slightly
  • Constrained camera to map area
  • Adjusted camera offset to center player on screen
  • Rearranged main menu
  • Prevented AI from selecting same character as player
  • Added healing indicator
  • AI entities now respawn as same character
  • Added parallax bg

Version 0.12

  • Balanced character stats
  • Added 2 characters
  • Improved Zinra map
  • Added weapon knockback functionality
  • Began implementing new map

Version 0.11

  • Corrected bug allowing grace to heal shields
  • Improved performance
  • Improved ai behavior
  • Updated Factory Map
  • Adjusted wall bounce

Version 0.10

  • Added splash screen
  • Added game settings menu and variables
  • Reduced token count
  • Added game gui element
  • Added respawn time and graphics
  • Implemmented projectile animation functionality
  • Added shield bar gui element
  • Began implementing sound effects

Version 0.9
-Added GUI
-Added Map selection
-Reduced token count
-Added score screen / Game win behavior
-Began second map

Version 0.8
-Improved map design
-Added objective functionality
-Improved AI
-Added limitations to shields
-Added projectile explosion functionality
-Added team spawn point behavior
-Balanced character stats

Version 0.7
-Began first map design
-Added ladder functionality

Version 0.6
-Added robogirl and harvester
-Added temporary display to indicate your team and character

Version 0.5
-Initial Upload

[ Continue Reading.. ]

4
11 comments



I'm thinking about making a vector graphics 3d game for the PICO-8 so I coded up a little demo. The 11 lines refers to the _DRAW() function for the pedants out there. :)

This is probably terrible in some way as I don't know much about 3d rendering, I just worked out the equations from a little background knowledge and some trig. Seems to work ok as long as you don't pass through the viewing plane (possibly the wrong term for what I'm thinking of).

3
1 comment


Cart #23796 | 2016-06-28 | Code ▽ | Embed ▽ | No License
1

The first game I made, straight from Picozine #1.
http://100daysofpico8.tumblr.com

1
0 comments


if i use the export command to generate html/js, the cart will run, but its _update60 will be completely ignored, so only _draw will be called unless _update is also defined.

13 comments




Top    Load More Posts ->