Log In  

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

Cart #saucerinv_nosnibor28_20200101-0 | 2020-01-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

Hello and Happy New Year!

I'm new to PICO-8 but I've been dabbling with coding and game development for most of my life. So far, I'm really impressed with this platform and the community around it. I'm looking forward to creating and sharing with all of you!

Without further ado, I present my first PICO-8 cart. Thanks to @dw817 for the Applecart prompt/challenge! Little projects like this are a great way to learn and engage with the community.

Saucer Invasion is a game in which you shoot missiles at flying saucers. You can move the silo horizontally across the bottom of the screen and fire vertically at your foes. Your score for hitting a target is based on its height and speed, and there's a penalty for missing. The game ends when you run out of either time or ammunition. This is explained in a big ol' wall-o-text intro at the beginning, in keeping with the spirit of the original 1977 Apple ]

[ Continue Reading.. ]

3
6 comments


Cart #myrtlecity-0 | 2020-01-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
31

Myrtle Takes The City

My submission for Toy Box Jam 2019. Thanks to the organizers and content creators for putting together an awesome event!

Myrtle is visiting the big city, and wants to climb city hall! To get in, she needs to collect 7 gems. Maybe there are people in the city who can help?

How to play:
Arrows - walk
action key 1 (x, v) - run
action key 2 (z, c) - jump

There are not fatal hazards in this game, so don't be afraid to walk up to everything.

Feel free to post your best times, for both any % and 100%.

Thanks!
-PBG

Notes for launcher:
cart name: myrtlecity-0
alias on itchio: Myrtle Takes The City
itchio link: https://paloblancogames.itch.io/myrtle-takes-the-city

[ Continue Reading.. ]

31
9 comments


Cart #tuberias_ximo-4 | 2020-01-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

Cart Full Name: Toy Box Pipe
Alias on Itch.io it was submitted under: ximo https://ximo.itch.io/
Cart Name on Lexaloffle: #tuberias_ximo-4
I followed the optional theme FLOW

7
7 comments


A not-entirely-canon demake of the game 'Zeewolf' by Binary Asylum.

Pilot your Zedwolf chopper across 6.5 km^2 of 3d open world environment, rescue hostages and repel the enemy force's attack!

epilepsy warning: contains strobe or flash effects

Cart #zedwolf-1 | 2020-01-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
124

Currently there's only one level and the cart will simply replay it once it's completed.
I hope to add another one in future, but I also wanted to get something out before the end of the decade, and I have.. 19 minutes (local time) to do that!

Controls:

Z: toggle landing gear up / down

X (while landing gear is down): throttle up
X (while gear is up): fire rockets

Arrow keys: move

[ Continue Reading.. ]

124
24 comments


Cart #tbj2019_democart-0 | 2020-01-01 | Code ▽ | Embed ▽ | No License
9

This is the DEMO CART for Toy Box Jam 2019.

https://itch.io/jam/toy-box-jam-2019

The code is mostly atrocious, but on purpose -- it shows what sprite numbers to use and colors to change to make the most out of a limited number of sprites.

Enjoy the fine music by Gruber!

9
0 comments


I discovered this while trying to reduce someone's not-quite-tweetcart, and I boiled it down to a simple repro case.

These compact lines both parse and function correctly:

x+=1y-=1
y+=1x-=1

But these don't:

x-=1y+=1
y-=1x+=1

Variable names don't seem to matter. I included versions with variable names swapped just so you know it's not the variable order at fault somehow.

Same thing happens both when executing editor/app code and at the shell prompt.

I tried on the BBS and the parser here isn't able to work it either.

I didn't try other operators, like *, /, or %.

Side note: On the same subject, would you mind adding ..= and ^= operators? I think that would make the set orthogonally-complete.

3
7 comments


Cart #hanohehowu-4 | 2020-01-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Use the arrow keys to move your ship and X to start/fire.
Press O to restart.

1
2 comments


up
by dw817
Cart #up-1 | 2020-01-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6


(01-02-20) If you just want to see it in action, try out the cart above and examine the source-code. For a more detailed demonstration including compression, try out the cart below this.

by dw817
Cart #sccm-4 | 2020-01-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

TO LOAD THIS CART in Pico-8, in immediate mode type:

load #sccm

UPDATE (01-01-20) Removed all loose global variables.

[ Continue Reading.. ]

6
6 comments


SOLVED: See @samhocevar's solution. Thanks everyone who contributed answers !

It's a pretty simple question that may not have so simple an answer.

Is there a way I can declare locally global variables inside a function.

By this I mean I define variables inside a function that meet two states.

  1. The variable is seen for the first time and is therefore initialized with a new value.

  2. The variable has been seen before and is NOT initialized but in re-entering this function it retains the same values it had before this same function was exited earlier.

I know I can simply declare global variables but what I wanted was to be able to retain values of simply named variables that might be just a single letter. Yet can only be seen and globally recognized by that local function.

Here is an example:

function _init()

word={"one","two","three"}

for i=1,#word do
  count(word[i])
end

end

function count(a)
localglobal n=0
  n+=1
  print(n.." "..a)
end

[ Continue Reading.. ]

14 comments


Cart #alienrescuemission-5 | 2019-12-31 | Code ▽ | Embed ▽ | No License
1


Rescue helpless aliens from the moon!

This is my entry for the Toy Box Jam and my first game made with Pico8 ^_^

HOW TO PLAY:

  • Use booster to ease your landing
  • Try to save as many aliens as you can in 120 seconds
  • If you save all of the aliens before time runs out, extra points are awarded

Let me know your best score in the comments ;)

1
0 comments


Cart #duck_game-0 | 2019-12-31 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1


Leveraging some zeb demos to try things out as I learn.

1
0 comments


Cart #lavajoe-0 | 2019-12-31 | Code ▽ | Embed ▽ | No License
146

My entry for Toy Box Jam. Keep climbing to avoid the rising lava. Collect treasure and take down monsters for bonus points.

146
17 comments


Cart #roombanator-2 | 2019-12-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

Enjoy exploring the world of a vacuum cleaning bot :)

This is my entry for the toy box jam 2019. It took me way longer as expected but I'm really happy with the results :)

Launcher info:
Cart Full Name: Roombanator (Toy Box Jam 2019)
Alias on Itch.io it was submitted under: bttrs
Cart Name on Lexaloffle: roombanator

Itch.io link: https://bttrs.itch.io/roombanator

2
2 comments


Cart #noob_dg-0 | 2019-12-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


My submission for the Toy Box Jam 2019.
Actually about one minute of dungeon crawling.

2
2 comments


by dw817
Cart #mgst-1 | 2019-12-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
15


TO LOAD THIS CART in Pico-8, from immediate mode type:

load #mgst

UPDATE (12-30-19): web address

Metal Gear Solid was an incredible and groundbreaking 3-dimensional stealth game for the Sony Playstation released in the states back in 1998. Not only was it an incredible and challenging game the graphics for its time were nothing short of miraculous if you didn't count Final Fantasy 7.

This then is my tribute to the opening story, where Snake has infiltrated the lower levels, made it to the elevator, reaches the top and is at a secret base in Alaska where he is contacted by CODEC which stimulates the small bones in his ear of his mission and target.

[ Continue Reading.. ]

15
5 comments


Cart #alfredo-2 | 2019-12-31 | Code ▽ | Embed ▽ | No License
8

My entry to the first #ToyBoxJam is, a PICO-8 remake of...
Alfredo's Stupendous Surprise!
(Originally created by Tom Hall & John Romero - for Softdisk Issue #98)

I made it as best as I could, within the jam limitations
(e.g. only using pre-defined assets!)

CONTROLS:

Choose options (when prompted) = ◀ / ▶
X or Z to Start/Select

GAME:

Alfredo's back in this PICO-8 remake, especially for #ToyBoxJam
and has he got a surprise for you! 🥳🎉

  • Will Alfredo get to his house?
  • Will he get to blow out the candles on his cake?
  • Will he die in some horrible death?
  • Play his latest adventure and find out!

Have fun & thanks for playing! 😁

Release History

  • v1.0
    • Initial Release
  • v1.1
    • FIX: Bug with 10 Ton weight (thx Tom!)
    • FIX: Co-routine bug on last screen (thx again, Tom!)
8
3 comments


Cart #food_trail-1 | 2019-12-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Cart Full Name: Food Trail!
Alias on Itch.io it was submitted under: vapidvial
Cart Name on Lexaloffle: food_trail-1

Instructions:
Use arrows to move/interact and the X key to throw food(considering you already have some).

Food Trail! is a game where the player has to attract as many monsters as he can with food to follow him to their umm... ask the sad standing monster! You have to keep them full or else they may lose their way, indefinitely! Also, some monsters taste better than others, according to a particular individual, so choose your monsters wisely.

This is my entry for #TOYBOXJAM, hope you like it!

1
2 comments


Made for Toybox Jam 2019

Cart #chalice_of_the_gods-0 | 2019-12-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

4
3 comments


Cart #cecioofthevalley-0 | 2019-12-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

So this is my toyboxjam entry. It's my first attempt at a jam and my first complete game. Kinda excited I must say :)
Let me know what you think.

Launcher infos:
Cart Full Name: Cecio of the Valley [ToyBoxJam 2019] / ID: #cecioofthevalley
Alias on Itch.io it was submitted under: damngoodcocoa
Cart Name on Lexaloffle: cecioofthevalley-0

Itch.io infos
https://damngoodcocoa.itch.io/cecio-of-the-valley

How to play:

  • arrow keys: moves player around
  • z: action key
  • x: speed up texts

Have fun!

4
3 comments


My submission for Tom's ToxBoxJam 2019. It was a lot of fun! In the end I neither had the time nor the tokens to do everything I wanted to. But hey, I got it done in time! Hope you enjoy.

Cart #ghostronaut_max_tbj2019-0 | 2019-12-30 | Code ▽ | Embed ▽ | No License
5

Info for the Launcher:
Cart Full Name: Max [ToyBoxJam 2019] / ID: #ghostronaut_max_tbj2019-0
Alias on Itch.io it was submitted under: ghostronaut
Cart Name on Lexaloffle: ghostronaut

Itch.io:
https://ghostronaut.itch.io/max-toyboxjam-2019

5
4 comments




Top    Load More Posts ->