Just a wee little game I made to take different parts of pico-8 for a spin! Your typical space shooter in which you destroy things with love.
Pico-Sprint is a tribute to Super Sprint and my Xmas gift to Pico8 users :-)
Up to 4 players can drive like mad to finish first on 16 tracks.
Picked up wrenches can be spent between races to enhance your vehicle.
I tried as much as I could, but there's no music and only a few (ridiculous) sfx.
So if someone is kind enough to provide an epic soundtrack I'll be forever grateful.
As usual, comments and critics are welcome!
Merry Xmas!

Version 1.01 : Tweaked cars' speed.
Version 1.02 : Fixed to work with 0.2.0 (thanks to @Felice)
Old version:
[hidden]

This is the orthodox vertical shooter that compete for the high score.
- It is possible to enhance the ship by obtaining an item.
1.Weapons change (3 types)
2.Weapon enhancement (5 stages)
3.Speed up (5 stages)
4.Pod add (Maximum 2) - The weapons and pod has endurance is set.
- The enemy will appear in random.
- To proceed to the next stage by defeating the boss. Enemy becomes stronger.

Just a "music" cart.
It shouldn't desynch even if the web client lags because the floating text spawns the music.

Note: this cart has been superseded by Pico de Pon: https://www.lexaloffle.com/bbs/?pid=74540#p
v1.02 notes:
- Add more celebration sfx (trumpets) for big chains, depending on chain reaction length
- One-player scoring is scaled by the initial difficulty selection
- No garbage blocks fall in easy mode
- Fixes crashing and correctness bugs (Thanks everyone for testing!)

How i can get this code to work?
list = {}
--adds a person to the list.
function addp(name)
local p = {}
p.life = 100
p.x = 64
p.y = 64
p.n = name
add(list,p)
end
function _init()
addp("test")
addp("touh")
addp("chori")
addp("kek")
end
function _draw()
foreach(list, print) --prints "table"
for o in all(list) do
if(o == table)then
print("is a table")
else
print("no table")
end
end
end
|
i can't recognize a table with this code.
Any ideas?
Hi,
When I'm on the page Humble Bundle https://www.humblebundle.com/s?key=mykey[/u] I dont see the button or link 'Lexaloffle Account Activation".
Or
When I type "mykey" on the page "[u]https://www.lexaloffle.com/account.php?page=activate[/u]" I have the response "Key not found".
Can you help me ?
Thank's a lot.

This is a file that I use to teach how to upload levels :)
tutorial video "making of a simple monster with a weapon"
please let me know if you have any questions :)
Here's my Ludum Dare submission, "Moss Covers Everything".
This started out as "Qix in the dungeon" and grew into a thing of its own. LD being what it is I was running out of time and energy around the point I finished the gameplay mechanics so there aren't many levels or things to interact with (and no sounds at all), but I hope you enjoy what's there.
While I didn't actually end up taking much from it, Hyaku Man Ton no Bara Bara / The Million Ton Breakup, a Japan-only PSP game that's like Qix with airships, was a big inspiration. Here's an ad for it.
The music editor in Pico-8 only works in groups of 32 counts. This makes using triplets, or writing in triple time (3/4) very inefficient. If you loop a 3-count pattern, the music editor will loop it up to 32-counts, then restart. The only workaround is to not use loops when composing in multiples of three, but this takes up way to much space. For a future update, maybe the ability to edit the number of counts in the music editor? If I could have changed the counts from 32 to say, 24 or 36, it would have saved lots of work and memory. Does that make sense?
Another quick observation, though I don't think it has an easy fix: Gradual, linear tempo changes are also memory hogs. The title music from ALttP required 2/3 of the music allotment, even though it's only 20 seconds long (https://soundcloud.com/gruber99/sets/the-legend-of-zelda-alttp-pico)
Hope this is helpful!

This is my Pico-8 remake of Hyrule Castle from Zelda ALttP (I recreated the entire soundtrack in Pico-8. https://soundcloud.com/gruber99/sets/the-legend-of-zelda-alttp-pico)
I'm happy to upload any other of the cartridges, just let me know!






3 comments














