Log In  

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

Cart #dtkupib-1 | 2024-07-26 | Code ▽ | Embed ▽ | No License
2


this is a demake of the Ataritin Bytebeat by Decent-Manager-6169. i have no clue if pico-8 makes this playable as i am new to this but then again this is only a test.

Original Bytebeat: https://dollchan.net/bytebeat/?fbclid=IwAR2uKV1pHNgtWNwYloB2G_NqvokCQ8_A3LiHVn5FrrN6qcVFzforSsaPF-c#v3b64dVLbboMwDP0XpNECpo0NhGYSSPTyA3tFTKJbHyZt3aQiXtb9+2yHauyh5BDbOfGJc/kOXj5fT8FjMFapOzg4V7gyBUFfDXWNFJbQVG2KYAER5rZrpwkdbKuWwAHm8Ge6tu9gx6kFRyXMjDJ7ZliK5WZGmQMzJMsYmFvlmqZa8qqbZ1naXKXPr0N8XlNMcbyUOj1IVhKwMPlKC650jRRFoc14d1m8MM45Yxj8Owmkk1iG5Vu0rO2VG5C2hR23PRz+S9Z1HmbYwbGSWvj8jCnmBY28Q+lpalb9UcduM9JMcIsnWB32vvJ+V/f1ZCIJRk0WwsceOeSagIBwrzQnF8xw3KxKS9aovtX8fPK8Vqk9S5Vag6fLKYUvjzFOQj7CTKG+F8TbW0LyBxraHPrkyEdJCa6KuGmSjOLL23mJK1vwwabDukB6yCjZRBFzAQSX/uPr/fTUD/yYM+Ir+PkF

2
4 comments



Unttiled Flying Jelpi Game
is funny game based on Time for lunch by @zep

2
0 comments


Cart #healthbar_demo-0 | 2024-07-26 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA


A small health bar demo project.

Usage

You can tweak the values in the draw_lives() function to change the appearance of the health bar. The 'x' and 'y' variables control the x and y of the top left corner of the health bar, the 'off' variable alters the spacing between the hearts and the 'life' variable controls the number of lives, out of the 'max' variable.

Feel free to use this in any project you may be working on!

0 comments




Cart #dinorun-3 | 2024-08-08 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6


A simple arcade like game, the controls are just the left and right arrow keys. In order to start press the X button!
It is still work in progress!

UPDATE

New menu update!

UPDATE!
jumping!
and a freeze power up

6
1 comment


Cart #spacedout-2 | 2024-08-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

5
4 comments


Cart #dsikowono-2 | 2024-08-10 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6


A little topdown game I made in around 3 days. Hope you like it!

Version History


« v1.1 »

  • Fixed skip in final level
  • Added better music
6
2 comments


Cart #p8highlighter-1 | 2024-07-25 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

P8 Syntax Highlighter

An advanced PICO-8 lua syntax highlighter in just 356 tokens! Call highlight(code) to receive a printable p8scii string. All the colors can be modified by changing their corresponding p8scii color at the top of the script.

Check it out on | Github

Examples:

All examples generated with P8 Syntax Highlighter

If you end up using this, please share it here!

Updates:

  • Implemented string delimitting (or however that's spelt) [397 Tokens]
4
3 comments


Cart #cobbsadventure-5 | 2024-09-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
16

Cobb's Adventure

Help Cobb on his adventure to eat as much food as possible!

This is HEAVILY inspired by Adventure Island, a wonderful game series from the mid-80s, although I am most familiar with the Gameboy adaptations in the early 90s.

Features:

  • 8 different environments
  • Never play the same game twice! Levels are randomly generated every playthrough
  • Easy to learn, hard to master - once you can beat the game, go for 3 stars on your score or times!

I strongly recommend a gamepad for this game. If you are committed to keyboarding, consider pressing "Enter" to open the menu, and set "AutoRun" to "ON" so that you dont need to hold a key to run.

[ Continue Reading.. ]

16
6 comments


I've made Super Mario Maker 2's Snow theme from the Super Mario Bros. game style into PICO-8
Have a listen:

Cart #smbsnow1-1 | 2024-07-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

4
1 comment


Cart #befruited-0 | 2024-07-24 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

Hello everyone!

Here's my first PICO-8 project, a fruit-based match 3 game.

  • Matches do not have to be in a line; any continuous region of fruits counts
  • Modes with limit on moves, limit on time, without limits, or autoplay
  • Fruits!

Feedback is welcome.

7
2 comments


Cart #qsortz_bc-0 | 2024-07-24 | Code ▽ | Embed ▽ | No License

Feature Overview

QSORTZ() Quick sort by z.

  • sorts by reference to z from the argument table.
  • See the code in the cart for the single value type QSORT() where table t is sorted by v.
  • This function consumes 76 Token.
tb={{id='a', z=1}, {id='b', z=2}, {id='c', z=1.5}, {id='d', z=-0.5}}

?'before sort',6
for i,v in pairs(tb) do
	?v.id..':'..v.z
end

qsortz(tb,1,#tb)

?'\nafter sort'
for i,v in pairs(tb) do
	?v.id..':'..v.z
end
--[[
before sort
a:1
b:2
c:1.5
d:-0.5

after sort
d:-0.5
a:1
c:1.5
b:2
]]
0 comments


Cart #youtooz_floppa_plush_for_free-0 | 2024-07-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

1
0 comments


Cart #strange_caracal-0 | 2024-07-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Is experiment on pal and rnd im add in function _init and function _update60

Photo of caracal im use Depict and im open file PICO-8 cartridge and paste in gfx

source photo

1
1 comment


Cart #pico8_setup-0 | 2024-07-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA


Simple PICO-8 setup screen

that use WITH CREDIT

code using in @mattu82 cartridge called Booting

0 comments


Cart #fuwgiwugo-0 | 2024-07-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

it contains the main steps of creation for a warhammer fantasy rp character of the fourth edition which is translated to spanish by Devir (i still don't put the step of the talents because i'm fighting with myself whether to put them in this cartridge or put them in a different one). i wanted to translate it to english and make it equal to the spanish version but i realized that i need the cubicle7 version xd because that one has the data of the roll tables different from the spanish version and i don't want anyone to be confused.
I plan to include the gnome and then try to translate it to english but I want it to be very faithful to the english version.

0 comments


Cart #bubbletowers-1 | 2024-08-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
13

Tower Defense Game for Pico-8.
This game is inspired by the old flash games:
Bubble Tanks Tower Defence.

Description

This is not the usual tower defence game you are used to. Sure, you have to build towers to defend against enemy waves and also earn cash by destroying them to update your towers.

What is special here is that we not only can build defence towers to destroy enemies but also to define the path the enemies can take. Where the enemies have different skills like self-healing or flying over towers. In addition, we have various different maps where some may have blockades, are limited in space or have already predefined fixed paths.

Game Play

[ Continue Reading.. ]

13
6 comments


Cart #matorodufa-0 | 2024-07-22 | Code ▽ | Embed ▽ | No License

I'm working on a farming simulator game. In the _init() function it should randomly generate the pattern on the grass tile and then randomly place the grass tile on the map (replacing any empty tiles.) However, a strange bug is occurring where some map tiles are corrupt. Can somebody explain what's going on? Use arrow keys to move around.

2 comments


Cart #highwaymadness091-0 | 2024-07-22 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments


Cart #acowsadventure-1 | 2024-07-21 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

Main Controls: Z - Open Shop/Back | X - Shoot/Confirm | Arrow Keys - Move
Alt Controls: N - Open Shop/Back | M - Shoot/Confirm | ESDF - Move

Welcome to A Cow's Adventure!

This is my first game on Pico-8 and, actually, ever! I made it in 7 days (+ 1 day bug fixing/balancing) and have been learning lua for ~5 days prior so this was a SUPER fun and educational experience!

In this game, traverse different farms as a Cow of your choosing, each class providing different base stats. Shoot your way to victory with careful planning, basic upgrades, and simple vertical movement. Enjoy some great classic arcade vibes thanks to Gruber's Pico-8 Tunes Volume 1 music set! Each Victory rewards you with a unique "Trophy" that will be added to the farm you start in. Each Cow + Difficulty gives a different one, try to collect them all!

[ Continue Reading.. ]

3
3 comments




Top    Load More Posts ->