Log In  

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

@zep:

I teach a LOT of students PICO-8 and lately I've been mostly teaching online classes over Zoom. I'm usually doing this webinar style where I am the presenter and the students are participants. I can't see their screen, but they can see mine and there's a Q&A chat window where they can ask questions and so forth.

It would be extremely helpful to be able to copy console error messages to the clipboard. Currently you can hit CTRL-C in the console to copy what's typed into the command prompt, but it would be even more useful, if the prompt was empty, to use CTRL-C to copy the last error generated. Like this:

This would make it so much easier to help students when they run into errors, especially the very young students. If they get an error, they can just hit CTRL-C and paste the error into the Zoom chat. This would also be helpful for people trying to get other live help online, such as from Discord.

8
3 comments


Hi,

I am working on a small cart to demonstrate an engineering process for a colleague who wants to spice up a PowerPoint presentation he is giving.

Does anyone know if its possible to embed a Cart (in HTML format??) into a PowerPoint presentation so that he can run it from within his presentation?

Any help much appreciated.

All the best,
Paul :-)

PS: Am asking here since I can't test this as I use a Mac and don't have PowerPoint! Thanks :-)

1 comment


i've been tinkering around with Buildroot and got me an image that I'm happy with that boots up, connects to wifi then starts pico-8. the problem I'm having is that once pico-8 starts, the inputs aren't recognized as if pico-8 doesn't have focus. I'm not sure how to force it to have focus though. anyone have any idea what might be causing the issue? i haven't tried using a controller, so I have no idea if that would work or not. my goal was a minimal image for running Pico-8 :)

it does the same thing, even if I run pico-8 manually and not @ startup.
here is the output of me using the keyboard while pico-8 is up and running and after I have killed pico8_dyn from the console, so I know the OS is recognizing inputs, just not pico-8.

thanks in advance for any advice!

15 comments


So, I tried everything, then I created a profile to ask this: is there any way to play with the D-pad of a game controller on the embedded PICO-8 player?

Currently, the D-pad is very weirdly mapped to the menu, so I can't even set my gamepad with JoyToKey. There is no way to change this weird mapping, and there is no way to disable joystick detection. I don't understand this choice at all, is there any way to escape it?

13 comments


Cart #nayadunaze-1 | 2020-11-13 | Code ▽ | Embed ▽ | No License
4


Nine tweettweetjam5 entries in one cartridge!

  • VULF 3D
    • Explore a maze a first person raycast game!
  • There be Treasure!
    • Use triangulation to find the treasure!
  • PADAR
    • Defend yourself from incoming bogeys!
  • Big Donut
    • Become the donut magnate in this idle clicker!
  • Diskette
    • Dodge the disks, get that high score, don't bleed out on the floor!
  • Go
    • 2500+ year old board game in 560 chars!
  • Blitzar
    • Sixteen hundred stars to explore in this space sim!

[ Continue Reading.. ]

4
0 comments


Cart #battleshipv1-1 | 2020-11-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

This is my first 99% finished game, been a project for about 3 years that I only recently got to a fully playable state. The code is indicative of my programming skills changing over time. Any feedback or bug reports would be welcomed!

3
2 comments




Cart #fishbone-0 | 2020-11-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
14

First game using Pico-8! So happy I could finish a game by myself and actually post it.
Anyway, hope you enjoy despite of being super simple and of course let me know if you have any suggestions for the future :)

14
6 comments


Can you put mice into Jelpi?

So, I've been messing around with mice and the pico-8. Now earlier I was playing Jelpi and thought "Hmm, I Wonder if I can put touchscreen on this?" Now I Myself don't have a touchscreen! But for people who do not, CAN YOU LET THEM PLAY WITH NO CONTROLLER? I'm gonna try, but anyone of you can leave the cart here if you make it.

link to a mouse cart https://www.lexaloffle.com/bbs/cposts/2/22286.p8.png

EDIT: Old post, I didn't want to delete it. Sorry for all the caps and stuff.

2 comments


Cart #d8ing-0 | 2020-11-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

since i've been a little obsessed with death stranding recently, i decided to make a little demake for the tweet tweet jam. i'm quite happy with how it turned out and how much functionality i managed to squeeze in. it even has the scanner haha
arrows + x

it's on itch.io as well

4
2 comments


Cart #spaceinvader0-8 | 2020-11-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


INSTRUCTIONS

X = fire main weapon. This can destroy both invaders and their bombs and mothership.

Z = fire particle beam, which takes time to charge up in top-left. This is ultra destructive but can only destroy invaders; not their bombs or mothership.

Arrow left or right to control ship

Invaders that dive-bomb are worth more.

A mothership will occasionally appear and respawn invaders. Shooting it down is worth max points.
When the mothership spawns new invaders, they take a few seconds to materialize; shooting them in that state is worth more.

As you progress through the levels, the mayhem increases and gets faster.

Of programming note: the Animations and Sprt functions implement a general-purpose system for animating sprites in a declarative way. Just specify the state transition in a table and call the Animation function with the object to animate, and it will automatically transition the object through the specified states, including looping and chaining.

2
0 comments


Cart #peachbross-0 | 2020-11-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

0 comments


Cart #misizefide-0 | 2020-11-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

THIS CART USES THE DEVKIT MOUSE!!!!
This is just a fun little example :D

2 comments


oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooi

0 comments




People have been asking how I managed to fit a multiplayer game into the space of two tweets (560 chars) for TweetTweetJam5, so I thought I'd write a mini tutorial to explain the process!

We'll cover:

  • Stuff you need (such as javascript libraries, and where to get them)
  • How pico-8 talks to the outside world (General Purpose Input Output - GPIO - memory)
  • How to have a conversation between pico-8, the web browser running a pico-8 cart, and a database server
  • How to implement multiplayer that allows users to play against 'replays' or 'ghosts' of previous players (which is rather cool and under-explored territory imo)

We won't cover:

  • Server-side coding such as would be required for concurrent multiplayer gaming like, er, Counterstrike or something (do people still play Counterstrike?)
  • Setting up a specific online database to hold your replay data - I use FatFractal http://fatfractal.com, but I am sure there are loads of options these days. Anything that can be accessed from client-side Javascript will do just fine.

[ Continue Reading.. ]

28
8 comments


Cart #navia-0 | 2020-11-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


I,m Navia.
I test your navigation skills.
Please navigate me with three looping locators.

2
0 comments


πŸ€πŸŒƒ Canary

Late #pico8 game in ~513 bytes for Tweet Tweet Jam 5

Fly like a canary through procedural mine shaft without bumping your little head πŸ¦ΊπŸ”¦

Cart #ttj5_canary-2 | 2020-11-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
6

6
0 comments


Who's the biggest fish?

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

Controls:

  • arrow keys: move
  • x: restart

This was my entry to TweetTweetJam 5; check it out on the jam page here if you like. Also, I wrote a short blog post about it here!

And clearly, a tweetcart needs to be tweeted: here it is

3
0 comments


On the last evening of #tweettweetjam I was playing around with free body motion, made a prototype... it evolved into a ~1000 character toy... and I managed to squeeze it down to 560 just before the deadline. The math is buggy when paths get too close to centers, but I sort of like the look so I didn't even try to "fix" it...

Arrow keys move the attractor, πŸ…ΎοΈ/Z switches control, ❎/X resizes.

Cart #sisuterujo-1 | 2020-11-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

1
0 comments




Top    Load More Posts ->