Log In  

BBS > Community Superblog
All | Following | GIFs | Off-site

Cart #scientistwd_breakoutsky-0 | 2021-11-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
11

Breakout Sky

A little something I made up from the LazyDevs tutorial. I wanted to try my hand at PICO-8, and I really had a lot of fun! Your job is to break up the clouds to reveal the sun again.

Control

Use "LEFT" and "RIGHT" to move, of course. Press "X" to kick, but be sure to do it with good timing! In addition, if you collect enough Stardust, you can hold down "O" to unleash a surprise!
Some blocks react differently if you kick the ball into them. Pay close attention!

Modes

STORY MODE is a set of thirteen levels. You get 9 lives to complete them, so good luck! It's the best mode to help you learn the game, too; I recommend beating it first.

[ Continue Reading.. ]

11
2 comments


How does the sin() function work in pico-8?
I've tried experimenting with it, but it doesn't seem to work the way I want it to.

cls()
print(sin(90)) -- returns 0

I really don't understand, why doesn't it return 1?

3 comments


1: Direct print of stat(31) breaks printing

2: Using _update60 causes stat(30) to break/desync sometimes

3: Calling stat(31) breaks later stat(30)/stat(31) calls


Keys only register if 2+ are pressed at once.

With _update60:

1 comment


A little experiment to create a swarm of rats.

Press Z to add rats. Press X to pop rats.
Press arrows to move cheese.

[0x0]

Cart #rats748392402-0 | 2021-11-08 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

[0x0]

[ Continue Reading.. ]

1 comment


Cart #yomireyoso-0 | 2021-11-08 | Code ▽ | Embed ▽ | No License
1


Turns out that PICO-8 might actually be easier to use than I initially thought.

1
0 comments


In an effort to easily contain 64-different characters for use in a compression table, I am seeing that if I use PRINTH() to @CLIP - that it is forcing the clipped data to be uppercase only in Pico-8.

a=""
for i=33,98 do
  c=i
  if (c!=34 and c!=92) a=a..chr(c)
end
printh(a,"@clip")

The results saved to the clipboard are:

!#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`ab

yet when pasted in Pico-8, you get:

!#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`AB

Where the last 2-characters are converted to uppercase.

So pasting with CTRL-V in Pico-8 apparently converts the entire clip to uppercase.

I would like to recommend that if you copy something to the clipboard from Pico-8, you have the option of it pasting it entirely as it is supposed to be.

printh(a,"@iclip")

"i" for ignore case for instance.

[ Continue Reading.. ]

3 comments


Cart #plorbo-3 | 2021-11-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

An alien abduction game with procedurally generated planets

ATTENTION, PLORBO! We require new critters from across the Universe for our intergalactic zoo, the Pride of Plorbia. You must venture to new, unexplored worlds to find specific critters that we beam to your Mothership and return them to us.

Controls

When controlling green ship:

  • ARROW KEYS: move
  • Z: boost
  • X: abduct

When docked to Mothership:

  • DOWN: undock

When out of energy:

  • LEFT / RIGHT: control Mothership for a rescue

Any time:

  • Press ENTER to VIEW THE ZOO or MUTE THE MUSIC

​In the zoo:

  • Left/right to scroll
  • Hold Z + left/right to scroll quickly
  • X to exit zoo

[ Continue Reading.. ]

7
3 comments


Hey! I've been wanting to get into PICO-8, but I don't remember making an account with this email. Is there any way I can change my username? Thanks for any help.

1 comment


Cart #rain-2 | 2021-11-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

3
3 comments


Cart #abbyboat-0 | 2021-11-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

Made a new game with my daughter.

Pilot a Paddle Boat to the finish line.

Z - Left Paddle
X - Right Paddle

5
0 comments


Cart #potassium-2 | 2021-11-08 | Code ▽ | Embed ▽ | No License
16


Kris Get The Banana
Original by Toby Fox

I tried and badly remixed Cool Mixtape and decided to make some visuals for it
This is my first time actually making music, so if anyone could give feedback it would be greatly appreciated.

16
20 comments


Cart #hikari-5 | 2021-11-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
13


13
4 comments


Cart #kogatendo-0 | 2021-11-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

1 comment


Cart #ganewozihe-0 | 2021-11-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6


Controls

Right arrow to move.

Behind The Scenes

My 2nd game in pico8!

6
3 comments


Cart #heart_smash-0 | 2021-11-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


Created the most basic game I could manage in a couple of hours as a first-time experiment that my daughters might like. I'm posting it here so they can try it out. It's very basic, but it has hearts which they enjoy.

2
0 comments


Cart #smalltalksimulator-1 | 2021-11-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


I´m on a party but i like coding more. Have fun with this.

2
4 comments


Cart #low_knight-21 | 2022-08-21 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
39

Original demake by @krajzeg: https://krajzeg.itch.io/low-knight
I did not make the game, just changed visual effects and sprites as well as a feature or two.

Music is not by me, I just slightly changed the music from https://www.lexaloffle.com/bbs/?pid=64735 to be a bit more accurate
It has a license so I think I can remix and share it but if I'm wrong please tell me and I will remove it.

License:
https://creativecommons.org/licenses/by-nc-sa/4.0/

Low Knight is a demake of Hollow Knight made in the 2018 Demake Jam.

Controls:
Jump: Z/C
Strike: X/V
Rest: Up
Focus: Down

Changes from the original:

[ Continue Reading.. ]

39
13 comments


I was only able to find a few examples of rotating sprites using tlines on the forums. While the code worked, I couldn't really make sense of all the variables and magic numbers.

After spending quite a lot of time reading, debugging, and sketching hundreds of triangle, I think I have a decent understanding of the math and how it works. SOH-CAH-TOA haunts my dreams.
At some point, I'd like to make a more detailed post, but for now, I've written a tile rotating function with a lot of comments.

Hopefully it explains the math and the concept well enough that you can modify the code to suit your projects.
This code is intentionally not optimized or minified.

Cart #tline_rotation_tutorial-1 | 2021-11-07 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
15

[ Continue Reading.. ]

15
0 comments




I made a custom title screen for PICO-8! Feel free to use. No credit needed.

2
2 comments


Cart #charly_end_jedehn-0 | 2021-11-06 | Code ▽ | Embed ▽ | No License

0 comments




Top    Load More Posts ->