Log In  

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

Cart #flappywords-1 | 2021-08-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

I had the idea of creating some educational game parodies, and this is the first.

🐤 Fly through the pipes to spell animal names!
🐤 See what words you spelt at the end of the game!
🐤 Points!
🐤 Bird!
🐤 FREE!
🐤 Use in your class!*

The main code and the pipe sprite are from @jalecko's wonderful tutorial.

*A friend of mine has already told me he will use this game in his class to start a conversation about how crappy educational games can be.


Learn about my research and teaching with games over on the LLP journal website.

2
1 comment


Cart #ratasiyoja-3 | 2021-10-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

This is WIP of a line-based polygon editing tool for pico.

It's very simple and is meant to help you design polygons faster and export them to use with code later.

Some features:

  • Click-click with your mouse to create new vertices and link them together
  • X: New Polygon
  • H: Help
  • G: Enable or disable magnetic grid
  • U: Unlimited undo
  • R: Unlimited redo(!)
  • S:16x16 preview
  • E: Export to lua arrays of polygons (need to run pico8 from the terminal to get the text output)
local poly = {
  {
    {25,43},
    {40,34},
    {47,50},
    {68,44},
    {59,69},
    {88,71},
    {81,95},

[ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=96152#p)
2
8 comments


Use arrows to control ambience

Headphones recommended

Cart #rainywoog-1 | 2021-08-18 | Code ▽ | Embed ▽ | No License
3

Changelog

  • 2021-08-18

    • Add keys to toggle drone
    • Add logo & animation
3
0 comments


Cart #rogue-0 | 2021-08-17 | Code ▽ | Embed ▽ | No License
2

2
1 comment


Just a suggestion, but for modern controllers it would be really nice if the extra controls could be mapped like:

  • Right trigger = X
  • Left trigger = O
  • Right thumbstick = Mouse

That would allow FPS games like Poom, Sorcerer to be played like a twin stick shooter on capable input devices, without actually changing Pico-8's input model.

5
0 comments


Cart #nuddatepu-0 | 2021-08-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

2
0 comments


Cart #pitripostjam-0 | 2021-08-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

PITRI is a platformer game about 2 insect-sized characters Joined Together ; Pi (Rhymes with "Knee") and Tri (identical to "Tree").

Pi and Tri can jump by pressing the X button (X/V/N in a keyboard) and split from eachother by pressing the O button (Z/C/N in a keyboard) which result in controlling Pi by herself. Without Tri, Pi is much faster, can jump higher, and can bounce on a yellow shroom much higher, too! But, it comes at the cost of dying 10 seconds from splitting, since Pi Can't live without being Joined Together with Tri.

This game has been thought of before 2021's Game Maker's ToolKit's Game Jam, and funny enough, the theme for it perfectly matched the concept of the game! So what better time to make a short "concept demo" than now?

[ Continue Reading.. ]

7
1 comment


Cart #aconcagua-1 | 2021-08-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
17


Cart #aconcaguaprac-0 | 2021-08-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
17

Madeline goes to Argentina in my newest mod!

Features new levels, sfx, and assets by me

Thank you to everyone who helped!

edit: added practice mod

17
4 comments


Hello, this is my Celeste Mod which makes the game a bit easier because I'm bad and can't play the game without mods.

0 comments


Cart #jogoyeneze-0 | 2021-08-16 | Code ▽ | Embed ▽ | No License
1

1
0 comments


Cart #woyimijezi-0 | 2021-08-16 | Code ▽ | Embed ▽ | No License
3

I'm making my fitst pico8 game, and I'm trying to make an AI that shoots the bullet at where the player would be at once the bullet reaches it, so avoiding bullet won't be so easy like the small saucer's shots in asteroids does.

when i used game maker, I could easily implement it by using this example:https://www.gmlscripts.com/script/intercept_course

but since pico8 uses completely different langauge and there is no arcsin() function, it was impossible to replicate it for pico8.

function asin(y)
 return atan2(sqrt(1-y*y),-y)
end

local mex=s.x+4
local mey=s.y+4
local targetx=player.x+4
local targety=player.y+4

s.shootdir=atan2(targetx-mex,targety-mey)*360

[ [size=16][color=#ffaabb] [ Continue Reading.. ] [/color][/size] ](/bbs/?pid=96080#p)
3
4 comments


i know for a FACT that my sprites dont look like that

so uhh,,, help?

2 comments


Cart #psychohedron-2 | 2022-12-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4


My entry for LOWREZJAM 2021. Fly throught the loophole to defeat psychohedron.

Epilepsy warning: psychohedron contains flashing lights

At the end i run out of tokens so there are some parts unpolished. Map generation is a little buggy. I hope you enjoy it!

Controls
Left/Right arrow to move

Z to shoot

X to jump/use jetpack

Down arrow to fastfall/drop from platforms

v1.1 changelog

+Deleted final boss, now the game is an infinite arcade with score.
+Added score at game over
+Added new random backgrounds (58 patterns, 4 palettes and 4 effects)
+Added new block
+Reduced heart drop when u kill enemies, but now hearts appear in the map (and maybe a surprise!)

[ Continue Reading.. ]

4
3 comments



Cart #zombieapicolypse-0 | 2021-08-15 | Code ▽ | Embed ▽ | No License
30

Zombies have overthrown the city!

Grab as much ammo as you can find as you fight your way out of the zombie apocalypse.

Controls:

  • directional pad to move your character around
  • z button to shoot

This game was made for the #LOWREZJAM 2021

30
7 comments


I noticed that load() supports filenames without extensions and will pick filebasename.p8 if it exists, else filebasename.p8.png (I didn't exactly try the priority order, as there is only either a .p8 or .p8.png in my distributed game folder).

However, reload() won't work with a file basename. It needs the .p8 or .p8.png extension. When distributing a game both for p8 and png though, you don't know in advance what you'll need, and would need to create two versions of the code, one reloading files in .p8, the other reloading files in .p8.png, for both versions to work. I actually wrote a string replacement script to support them both!

It would be nice if reload() supported file basename like load() for this reason. I don't know if this is a bug report or a suggestion, but I would expect reload() to be consistent with load() so I opened this thread in the bug section nevertheless.

1
11 comments


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

X to change the background color
Arrow keys to move

0 comments


Cart #husowoppa-0 | 2021-08-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1


Updated with better beach sprites.

Cart #hkefagas-0 | 2021-08-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1


Updated with better sprites and sounds.

Cart #tekewugera-0 | 2021-08-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

[ Continue Reading.. ]

1
0 comments


PICO-1k JAM demo invitation 🥳

Organized by @Liquidream, PICO-1k JAM invites you all to submit a game, demo or tool for PICO-8 in 1024 characters or less at https://itch.io/jam/pico-1k in September 2021. No sprites, no maps, no sfx or music. Just 1024 characters of code.

Below is a little demo-invitation by @p01 featuring the mandatory starfield, a twister scroller, and a software sound synthesizer generating ~1min of music with 4 channels, and one ton of love for the PICO-8 community in 976 characters (counting the label).

Be wild, have a little fun at PICO-1k JAM

— 💌 @p01

Cart #pico_1k_jam_invitation-0 | 2021-08-14 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
35

35
9 comments


Cart #darn_tootin-3 | 2021-08-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

It’s the classic stand-off show-down game now in PICO-8.
(please reset your 'best' if it is 0, I need to fix the bug still sorry)

BUTTONS

Player 1 - x
(optional) Player 2 - a

TIPS

At the main menu, you can reset your wins/losses. You can also reset your 'best' which in turn will decrease the difficulty while keeping your wins/losses in tact.
Try to get 10 in a row!

3
0 comments


Cart #yumunufifo-0 | 2021-08-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
5

Howling Void is a roguelike game based on Lazy Devs Academy's Porklike.

While spelunking some random cave, you find the ruins of an ancient bunny civilization that was powered by a mysterious golden carrot. You decide to explore the depths of this old warren to find the carrot for yourself.

Controls: Arrow Keys to move. X to open the menu and Z to back out.

Interact with things by bumping into them! And remember that enemies move when you do so plan carefully!

5
2 comments




Top    Load More Posts ->