Log In  

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

So... I have 2 project's in mind.

A #Celeste rom hack & a #snail game.

I won't reveal names just yet (plagiarism) But be sure to check in!

1
0 comments


Cart #dual_grid_noesisra_0-0 | 2024-09-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5


This is my attempt to simplify the dual-grid concept for pico8, and come up with a reduce tile set that works with map to make level design and edits easy and fast.

Inspired by the video https://www.youtube.com/watch?v=jEWFSv3ivTg by Jess::codes. check it out for a great breakdown of the dual-grid concept.

The full tile set needs 16 tiles (14 edges, 2 solid). I figured that by rearranging them into a single row in the sprite sheet I could use a single offset number instead of a lookup table.
since only 4 bits are needed for an offset of 16 and in the dual-grid 4 corners are checked, using the corresponding binary number to determine placement order. 0000 for base and 1111 top. check out the following image for placement.

[ Continue Reading.. ]

5
4 comments


Hey there!
So I've been working with some people on translating a game of mine into a couple of different languages. I can't seem to figure out how to change the default PICO-8 pause menu text into the desired translated text though. As far as I understand, you can clear the menu and add your own items, but I don't really want the translations to have reduced menu features from the original. Is there a way that I missed to actually replace default menu item text? Or some fairly low-token alternate solution? I realize that I'll probably have to settle with some amount of English in the menus so any ideas are welcome.
Thanks! ^^

1
2 comments


I made this demo to quickly demonstrate how to use Blade3D, a 3D rendering API I'm working on. It doesn't make full use of the API, but it does give you a starting point if you want to make your own projects using (this version of) Blade3D. Hopefully I can make a slightly more comprehensive introduction to the API with full documentation in the near future, but for anyone willing to look at the underlying code, it should be pretty easy to accomplish whatever you need with just this template.

Cart #b3d_teapot-11 | 2024-12-28 | Embed ▽ | License: CC4-BY-NC-SA
34

Something that isn't included in the template is a .obj to .ptm converter, which is provided here. It expects the .obj to include material references (not the .mtl file itself) and for the mesh to be triangulated.

[ Continue Reading.. ]

34
7 comments


Hello!

Since 0.2.6b, a strange issue appears when enabling the mouse with flags 0x5 on mac (mouse capture enabled).
The cart starts fine, but the more the mouse is used, the more the cart stutters until it's basically unusable.

What's funny is that the performance monitor (ctrl+P) shows weird stuff but does not seem to actually register drops to 30fps or less (at least the 60/60 string never changes).

(for a more complete video in 60 fps, see here : https://www.youtube.com/watch?v=jBTMadG90Oc)

It may not much seem like much, but it renders my current game project completely unplayable on mac.

I've managed to get a constant reproduction and made a test cart. I've confirmed that it only appears on mac, in pico-8 or exported as a mac binary. The issue does not appear on an html export on mac. I've also tested it on 0.2.5g, and it did not appear, so it seems to have been introduced in 0.2.6.

I've uploaded the test cart in this message. To reproduce the bug :

  1. download the cart (don't run it in bbs, it does not reproduce the bug)
  2. run it on mac
  3. activate the performance monitor (ctrl+p)
  4. move the mouse around for 30 seconds
  5. observe the bug

[ Continue Reading.. ]

1
0 comments


Cart #tibehoboso-2 | 2024-09-28 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

Set three years after Scorsese's unforgettable psychological drama, "Taxi Driver", a bunch of weird creatures try to kill the whole planet and one sergeant has to shoot them with his space ship.

Made with the Lazy Dev Basic Shmup Tutorial
https://www.youtube.com/watch?v=81WM_cjp9fo&list=PLea8cjCua_P3Sfq4XJqNVbd1vsWnh7LZd

3
3 comments


Cart #kiyoshi_t3cm0-0 | 2024-09-04 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1


日本のプログラマーの間で一時期ミームになっていた「ズンドコキヨシ」をPICO-8で作成しました。

元ポスト https://x.com/kumiromilk/status/707437861881180160

[操作]
〇 (z) …ズンドコキヨシ開始
× (x) …デバッグ用(確定でキヨシができます)

[for English Users (from DeepL)]

This runs “ZUN-DOKO KIYOSHI” on the PICO-8.
It was briefly popular as a challenge for programming beginners in Japan, like FizzBuzz.

The rules are as follows...
・Randomly output either “ZUN(ズン)” or “DOKO(ドコ)” to the rhythm.
・When the sequence of “ZUN”, “ZUN”, “ZUN”, “ZUN”, “DOKO” is established, a “KIYOSHI(キヨシ)” chime is added.

[ Continue Reading.. ]

1
1 comment


I bought a couple of bluetooth gamepads off Amazon:
KIWITATA 2.4G Wireless NES USB Controller
Which are imitation NES classic, 2-button, D-pad, select start controllers.

It gets recognized right away by my latest Linux Mint OS and works in Pico-8
EXCEPT that both buttons do the same thing (I think they are both X).

I ran this code:

function _draw()
 cls()
 ?btn()
end

--both B and A output 32

and sure enough I get different values for all the buttons except both B1 and B2 print 32.

I've found this thread https://www.lexaloffle.com/bbs/?tid=3623 where one poster talks about the same problem. But its from 2016 and was for pocketCHIP and they solved it by getting a different controller.

I've also installed the SDL2 gamepad-tool for Linux but had issues. It sort of works EXCEPT that it wont recognize left/right on the dpad. I tried a million times and also tried skipping and mapping it to the little joysticks instead but it didn't work.

[ Continue Reading.. ]

6 comments


Cart #clotet_jumpy-1 | 2024-09-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

1
0 comments


Hello,

I'm wondering if include has a return value similar to require that would allow me to keep my various modules defined locally and not pollute my global environment, or if there is a trick to using require in Picotron. I'm keeping things pretty organized, but it would be really nice to have the flexibility of require. I thought Picotron used Lua 5.4? Or is it just a subset?

Thanks,
Mushky

3 comments


Cart #pomodorotimer-1 | 2025-02-06 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

Notice: Updated to version 1.1. In this version you can change the amount of time, and I've also cleaned up the UI layout a bit.

Hi folks, this is my first upload. Rather than do my work today, I procrastinated by building my own Pomodoro Technique focus timer. Consider this a v1. It literally just counts to 25 minutes after you trigger it to start. I could add the 5 minute break and other features, but thought I'd start with this. It's really simple!

Cheers.

4
2 comments


Gunzle P-8

Cart #psihonof-0 | 2024-09-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

ver 1.1:
small corrections
ver 1.2:
minor in-game collision fixes and sound effects.

Controls:
[32x8]

Move Clover with: the left and right arrow keys.

[24x16]

[ Continue Reading.. ]

7
4 comments


Cart #timecauldron-0 | 2024-09-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

Hi! I'm a 3D animator and generalist working in the games industry. Usually you'll find me deep in Blender doing all sorts of 3D stuff. But I've always loved pixel art! Recently I've enjoyed making Bitsy games (kednar.itch.io) but I always wished I could add more animations and JUICE to them. So it was about time that I tried Pico-8! (Don't worry Bitsy, my heart is big enough for both of you).

Thankfully there's loads of tutorials and courses, and I followed the Roguelike tutorial by Lazy Devs Academy (thanks Krystian!) which took me all the way here.

I'm posting this cartridge to get used to all this, and to let you all know you inspire me every day! If I ever made a list of "Best games I ever played", there'd definitely be a few made in Pico-8.

[ Continue Reading.. ]

3
1 comment


Parkanoid, the Pico-8 Arkanoid.

The most significant deviation from the original game is the "Powerbar". It loads every time the ball hit bricks and loads faster you hit several bricks in a row before bouncing in the paddle (ship).
When the Powerbar loads enough, the ball can break tougher bricks with one hit, and when its fully loaded it can destroy every brick, until it hits the ship again.

Have fun! Let me know your thoughts and feedback in the comments.

Cart #kinageheye_1_2_2-0 | 2024-11-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

v-1.2.2
Bug fixes:
-Glue powerup was not removed after game over
-Loading high scores was throwing 'out of memory' error.

v-1.2.1

Bug fix for sticky ball not placing in paddle correctly.

[ Continue Reading.. ]

7
10 comments


Cart #neguse_long_break_block-0 | 2024-09-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1


This is the longest block breaking game ever!
I made my first pico8 game for GMTK Game Jam 2024.
https://neguse.itch.io/super-looo0000ong-break-block

Progress is auto-saved.
Whether the game is running or not, time passes - just like your life.
Enjoy!

1
0 comments


Hey all,

I've decided to pursue my game making hobby, I'm as green as they come when it comes to coding/programming.
I've bought PICO-8 and Picotron, I'll be tipping my toes making games with PICO-8 to wrap my head around programming, and my initial end goal is to make a memorable 2D metroidvania game in Picotron.

I'm honestly not sure where to start though, I know there are free content I could watch on YouTube or read on websites, but I'm trying to find the foundational content/book(s) I can cling to and learn from, so I get a good grasp what it takes to be a decent beginner and eventually an independent intermediate game programmer.

Y'all are more than welcome to make some suggestions, I'll do my best to interact with the comments below.

I wish y'all a good day!

  • 84ggy
4 comments


Cart #infarm2-0 | 2024-09-02 | Code ▽ | Embed ▽ | No License
1

1
2 comments


Cart #kosufabuse-0 | 2024-09-02 | Code ▽ | Embed ▽ | No License


press ⬅️ to turn left
press ➡️ to turn right
press ⬆️ to move forward
press ⬇️ to move backward
press 🅾️ or z to fire
press ❎ or x to boost

0 comments


I found Pico-8 a few months ago (I've been living under a rock), and I've been having a blast learning it's particular brand of Lua. After nights and weekends of watching @Krystman's Beginner Shmup Tutorial, this is the result. The code is clunky and not optimized at all, but I feel it's a "minimum viable product". Let me know what you think. Any advice is greatly appreciated.

Changelog:

 -Updated Sidewinder enemy behavior
 -Fixed Fly enemy spawning locations so they no longer overlap
 -Added text indicators for random enemy spawns (investigating less intrusive replacement)
 -Minor bug fixes 

Defender of Coryx VII

The Va'nals Empire is sweeping through the galaxy, conquering system after system with their fleet of vat-grown bio-mechanical spacecraft. The peaceful people of Coryx VII have never known conflict or war, and are woefully unprepared to face the Va'nals' threat. In a last ditch effort, the greatest minds of Coryx VII gathered together and created the prototype starship X2-SLP "Slipstream", to be piloted by a brave volunteer. Drawing its power from the dreaded bio-mech ships themselves, the Slipstream may be the people of Coryx VII's only hope. Take the controls of the Slipstream, and defend your people!

[ Continue Reading.. ]

8
4 comments


Cart #complicit_cards_0-0 | 2024-09-01 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Made for Micro Jam #21 - Underground

Loot - illicit gains by public officials

---Merriam Webster dictionary

You are a nameless public official who has stolen taxpayer money to give to an underground society. Evade detection and detectives and get to the safe house.

If you get caught, B.S. your way out.

Like always.

Overworld: (Arrow keys to move, X to run)

Card Game: (Arrow keys to move, Z to enter, X to go back)

Green bar is stamina for running.

Step on save tiles to create a checkpoint.

Collision is bottom of player.

Use Cards button in-game to see summary of cards.

EXPECT BUGS

1
0 comments




Top    Load More Posts ->