Log In  

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

Hello, this is my first Pico-8 game! It's based off the great intro tutorial by Dylan Bennett, but I took it in a different direction. Your goal is simply to mine out all the nuggets and get as many as possible! Enjoy (also it's probably really hard, I could use some advice on difficulty!)
I love pico-8 and can't wait to do more stuff with it!

Cart #yazuhunaka-0 | 2021-01-08 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

7
3 comments


i am a guy who just wants to start code... so if there is any tips you can provide.. please comment bellow!

1 comment


Cart #perlin_islands-0 | 2021-01-07 | Code ▽ | Embed ▽ | No License
4


Going off of http://adrianb.io/2014/08/09/perlinnoise.html

I created a Perlin noise generator from scratch. Then I assigned the value range to some colors + lattices to simulate an archipelago!

Reload to get a new one. Download + press Z to save a particularly cute set of vectors that generate that island (will save under proc_map_vectors.json.p8l)

Pretty proud of how this turned out. I didn't port the code, per se, rather I wrote it from 0 with just the algorithm logic. Hope it's educational!

Cart #perlin_islands-1 | 2021-01-07 | Code ▽ | Embed ▽ | No License
4

[ Continue Reading.. ]

4
0 comments


Want to take advantage of the iPad app Procreate to help design better graphics for your next game in PICO-8... Check out my FREE "Procreate PICO-8 Pack" now available on Itch.io.

The following is included:

  • 🖌️ A pixel-perfect brush
  • 🎨 Two PICO-8 color palettes
    - The standard colors
    - The secret colors
  • 📄 A PICO-8 Canvas
    - 128px x 128px @ 72dpi

Enjoy and I hope it helps make even greater games for this fun to code fantasy console!

3
1 comment


Hi All,

Is there a way to recover corrupted carts?

A couple of days ago my in-dev cart (& backups) stopped working - throwing an application error, and writing a nullpointer in msvcrt.

Might have something to do with .xm music imports?

Reinstalling doesn't do anything, and I can't see any system updates in that timeframe.
Win10/Vox3.5b

**Warning: I'm adding the cart here but (on my system anyway) it will crash the chrome session when run.

Cheers

Cart #wimesuyaro-0 | 2021-01-07 | Embed ▽ | No License

1 comment


Cart #corewar-8 | 2021-01-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
10

Corewar is played between two programs written in Redcode, a low-level language similar to assembly.

Players write a program to eliminate all opponents in the memory (core) of the virtual computer.

The "sandbox" goal of Corewar is to write code that will cause your opponent code to terminate.
A set of challenges with incremental difficulty (like in all Zachlikes) is yet to be created.

This game is part of the Zachlike Jam and currently work in progress.

The above screen with the dancing letters shows a 800 cell memory (core), with 1 instruction per memory
location. The letters represent the first character of the opcode stored in that memory location

[ Continue Reading.. ]

10
6 comments


Hi All,

I wrote a small function to scale 8x8 sprites using a sprite number instead of using sspr() itself and having to pick out the x and y position each time.

I'm using it for the Toy Box Jam 2 where you have a spritesheet already made and you want to quickly resize things.

Updated function with feedback from @freds72 and @MBoffin:

function xspr(sprt,x,y,w,h)
	--sprt: sprite number
	--x: x position
	--y: y position
	--w: new sprite width
	--h: new sprite height
	local sx=(sprt%16)*8
	local sy=sprt\16*8
	sspr(sx,sy,8,8,x,y,w,h)
end

Original function:

function xspr(sprt,x,y,w,h)
	--sprt: sprite number
	--x: x position
	--y: y position
	--w: new sprite width
	--h: new sprite height

	local sx=0
	local sy=0
	for i=0,255,16 do
		if(sprt>=i) then
			sy=flr(i/2)
			sx=(sprt-i)*8
		end
	end
	sspr(sx,sy,8,8,x,y,w,h)
end

Probably already exists someplace but thought I'd share my own solution to the problem.

[ Continue Reading.. ]

3 comments


MOTORBIKE

Cart #motorbikev1_1-0 | 2021-01-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
15

Her is my second game ! Motorbike

In Motorbike you have to survive as long as possible while dodging car.
Use the arrow key to control the Motorbike.

The longer you survive, the harder it gets !

In Motorbike you have 4 difficulties,

The first one, and the most easy of all is Normal Speed.
This is your speed at the beginning,
you will have the time to see the other car coming
and getting used to the control.

Then there is High Speed, still easy,
but can put you in difficult situation at times.

[ Continue Reading.. ]

15
6 comments


I use an external editor when working with P8. Due to years of programming experience with CamelCase, I have written all my code in that format, accepting that it won't look right in the P8 editor. Everything has been working fine for me.

I discovered today, though, that there's no mechanism for me to inspect values at runtime, since I can't type "puny" (uppercase) letters into the Esc command line. Thus I can't do
print(myVariable)
I tried copying from my external editor, typing in all standard-case, or pressing Ctrl-P. None of these helped.

3 comments


so queria desenhar :c

0 comments


Cart #basicpong-1 | 2021-01-04 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

A basic pong game.

Thanks to @Krystman for the tutorials.

Also sorry too because i literally changed almost nothing.

1
4 comments


Cart #picos_farm-0 | 2021-01-04 | Code ▽ | Embed ▽ | No License
1

A game made in roughly 3 days for the ToyBoxJam 2020! Plant some crops and stay out of debt. See how many days you can last.

This doesn't quite have all the stuff that I wanted to put in it, but now that the deadline is extended I'll probably keep playing with the concept :)

It definitely needs a good chunk of optimization, but I still think it's a fun little toy.

1
3 comments


Cart #jroo_ill_be_around-3 | 2021-01-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

My first PICO-8 cartridge. This is a campfire scene demo set to an 8-bit demake of "I'll Be Around" by Yo La Tengo. 🎵 Enjoy.

(Update 1/5/21 - minor tweaks to track levels)

7
2 comments


Cart #spiderbat-0 | 2021-01-04 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
104

This was made in two weeks for Toy Box Jam 2020, a jam in which we had to make something using only premade graphics/sfx/music assets.

104
24 comments


Cart #super_mumtaz_bros-4 | 2021-02-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
22

In Super Mumtaz Bros. you join the titular plumbing brothers on their mission to rescue Princess Sana from... chickens?

•Hunt down radioactive chickens by using the Geiger counter!

•Break pipes!

•Repair pipes!

•Run around!

•Climb!

•Platform action!

•Discover secrets!

•Collect trophies!

•No jumping!*

Super Mumtaz Bros. is a highly realistic plumbing simulator that was made in Pico-8 for Toy Box Jam 2 from 18th December 2020 to 3rd January 2020.

Tips

Ali can find chickens stuck in pipes using his Geiger counter. He can then stomp on pipes to get the chickens out.

[ Continue Reading.. ]

22
9 comments


Introduction

Hello, i hope everyone is having a good 2021 so far :)

A good friend of mine ( @dad Jr.) introduced me to Pico-8 back in November 2020, and i set about looking for a tutorial on youtube to learn the Pico-8 interface and how lua works in general. Coming from Python the syntax was a little weird but was easy enough to get around (i hate tables).

Eventually i found a video series from Dylan Bennett ( @MBoffin) describing how to create a simple top down adventure game

After that @dad Jr. and I collaborated, and today we believe we have a demo ready for use!

Mally and the Missing Manuscript

Cart #matmm_demo1-0 | 2021-01-04 | Code ▽ | Embed ▽ | No License
3

Setting

You are Mally, an archivist working for the local museum.

One day a patron requests to see a manuscript from the old archives located in the ruined basement, a place no one has been in since the museum was rebuilt years ago.

Can you safely traverse the old archives, and find the missing manuscript?

How to Play

Controls

Arrows: Movement / Turn Actions

❎/X/5: Turn Actions
🅾️/Z/4: Contextual Actions

Items

Bombs

  • Can Destroy cracked walls and skeletons. Inert when planted, Must be activated by using contextual action button.
  • Takes 3 turns to detonate.
  • Bombs explosions can be chained together to produce traps for enemies, given you've found or purchased enough bombs to do it.

[ Continue Reading.. ]

3
3 comments


Cart #frozax_dnamutations-0 | 2021-01-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
19

Tiny puzzle game made in a few hours for the discord jam #5.

Apply mutations to DNA to match the target.

Known issues:

  • Levels generated are usually too easy and can be solved without using all the mutations offered.

Have fun!

19
2 comments


a little game idea i've been toying around with. i've set my goal for 2021 to move forward with it and get some levels completed and publish a cart, even if for my own amusement! :D

2 comments


Cart #ggaughan_wakey_001-1 | 2021-01-10 | Code ▽ | Embed ▽ | No License
3

3
2 comments


hello,
I just received my PiBoy from ExperimentalPi (it's running retropie) and, although Pico-8 is working fine with an external usb keyboard, I can't succeed in mapping/registering the integrated joypad and buttons with Pico-8.
did anyone figure it out?
thanks a grand

2 comments




Top    Load More Posts ->