While enabling mouse input:
POKE(0x5F2D, flags) -- where flags are:
0x1 Enable
0x2 Mouse buttons trigger btn(4)..btn(6)
STAT(34) -- Mouse buttons (bitfield) with
0x1: Left
0x2: Right
0x4: middle
poke(0x5f2d, 3) function _update() if (stat(34)==1) print("l") if (stat(34)==2) print("r") if (stat(34)==4) print("m") if (btn(4)) print(4) if (btn(5)) print(5) if (btn(6)) print(6) if (btn(🅾️)) print('🅾️') if (btn(❎)) print('❎') end |
Left mouse button (1) triggers button 5 (❎)
Right mouse button (2) triggers button 4 (🅾️)
Shouldn't this be the other way round?

This cart runs ok at first but fails when returned to from the breadcrumb.
code:
::_:: cart='#' for i=1,5 do cart=cart..flr(rnd(10)) end cls() print(cart,64-#cart*2,4) flip() load(cart,"leave "..cart) goto _ |
There's no newline after "goto _", adding one fixed the issue.
This only happens on the bbs.

This template enables mouse pointer locking thanks to the JavaScript Pointer Lock API & Pico-8's GPIO system. The mouse pointer will get locked inside the pico-8 frame, while still providing movement deltas from your mouse. Now you can do a proper Marble Madness or Quake remake!
here's a demo cart (also included in the zip below):
Of course it doesn't work as advertised here on the bbs, nor within the pico-8 binary. You'll get stuck when the pointer quits the frame.
- unzip ubmlock.zip in your template dir:
Windows: C:/Users/{Yourname}/AppData/Roaming/pico-8/plates
OSX: /Users/{Yourname}/Library/Application Support/pico-8/plates



this happened to me a couple of times in the last few days, and just now: I left pico-8 running (not a cart, console prompt) and found it completely irresponsive after something like two hours...
windows 10, pc didn't go to sleep (I usually manually Win+L, but not those times)
edit: 0.2.0d - missed an update ;)




Wandering carelessly through space you get swallowed by b'Ah, the semi-sentient semi-cybernetic semi-grumpy semi-planetoid! Now fight your way to its other end (there's one)!
Still in need of some polish here and there but (hope)fully playable, so here it is!
(edit) moved from w.i.p. to cartridges after all. some update still coming up later on...






standard version (export from 0.1.11g):
https://www.lexaloffle.com/bbs/files/13845/crt_template.zip
unzip crt.html to {application data}/pico-8/plates
then
EXPORT GAME.HTML -P CRT
alternate version (see here):
https://www.lexaloffle.com/bbs/files/13845/ubcrt_template.zip
Feel free to use & modify, no attribution required.
Have fun!










This was inspired by a minesweeper puzzle I saw in a paper magazine years ago.
- tag bombs with (X). once you've tagged 20 cells the board is revealed
- tag free cells in green with (O) (in easy mode only)
-
the bomb count does not include the cell itself (a '0' cell can contain a bomb)
- new version with mouse support (from 2019, forgot to post ¯\(''/)/¯).
- some polish still needed, so still w.i.p.
older version:
Fixes:
- pixel-perfect fullscreen (requested https://www.lexaloffle.com/bbs/?tid=28615)
- fullscreen mouse support (reported https://www.lexaloffle.com/bbs/?tid=28295)
- browser zoom (ctrl+/ctrl-) doesn't break fullscreen (also reported above)
- tab key disabled (https://www.lexaloffle.com/bbs/?tid=28844)
- select & drag disabled (https://www.lexaloffle.com/bbs/?tid=30380)
- context menu disabled on canvas & buttons
- gamepad support (krajzeg's https://github.com/krajzeg/pico8gamepad/)
Features:
- pixel-perfect auto-resizing (optional, set autoresize to true in html)
- minor enhancements (pico8 palette colors, black frame with shadow)
- play button when autoplay is denied (in compliance with autoplay policy changes in chrome 66)
Tested on:
- win10 (chrome,opera,firefox, edge(blurry as expected, lol@ms))
- linux mint (chromium,firefox)
- macos (safari)
- itch.io, site & app (min embed size is 516x540, close fit with borders without autoresize)
How to:
unzip ub.html to {application data}/pico-8/plates
and then
> EXPORT FOO.HTML -P UB
minified version:
> EXPORT FOO.HTML -P UBM
Download:
https://www.lexaloffle.com/bbs/files/13845/ub_html_12.zip
Have fun!
(edit) no mobile support for now
...
1.2: power button when autoplay disabled (chrome update may 2018)
1.1c: fixed cursor keys scrolling page within iframe
1.1b: removed CRs, added minified
1.1: fixed select/drag/context menu
1.0: first version
Previous versions:
https://www.lexaloffle.com/bbs/files/13845/ub_html_11c.zip
https://www.lexaloffle.com/bbs/files/13845/ub_html_11b.zip
https://www.lexaloffle.com/bbs/files/13845/ub_html_10.zip
(free to use and modify, no attribution required)





It seems I'm using these a lot, so here they are:
----------------- -- table as string ----------------- function tab2str(t) local s="(" for i,v in pairs(t) do if type(i)=="number" then s=s.."["..i.."]=" else s=s..i..'=' end if type(v)=="boolean" then s=s..(v and "true" or "false") elseif type(v)=="table" then s=s..tab2str(v) else s=s..v end s=s..',' end s=sub(s,1,#s-1)--remove last comma return s..')' end ---------- -- example ---------- l={1,2,4,5,s=5} print(tab2str(l)) |
---------------- -- clone a table ---------------- function clone(t) local c={} for i,v in pairs(t) do c[i]=type(v)=="table" and clone(v) or v end return c end |
--------------------------------------------------- -- sort a table (insertion sort) -- cmp(a,b) should return true when a,b are ordered --------------------------------------------------- function insort(t,cmp) for n=2,#t do local i=n while i>1 and not cmp(t[i-1],t[i]) do t[i],t[i-1]=t[i-1],t[i] i-=1 end end end ---------- -- example ---------- function ascending_y(a,b) return a.y<=b.y end t={} for i=1,5 do add(t,{i=i,y=rnd(10)}) print(i..': '..t[i].i..' '..t[i].y) end print("----") insort(t,ascending_y) for i=1,#t do print(i..': '..t[i].i..' '..t[i].y) end |



Well, it's that time of the year again!
(Last year's tree, this time with music thanks to gamax32's midi2pico)


Did you know you're literally sitting on a vast supply of natural gas?
Thanks to Fracture, Inc. this cornucopia is now within your reach!
It's easy as 1,2,3:
- Install a rig from Fracture, Inc. in your garden, your field, your backyard!
- Buy the finest fracking chemicals from Fracture, Inc. (only $1 per barrel!)
- Start fracking!
- ...PROFIT!
So what are you waiting for? Order your personal fracking rig from Fracture, Inc. right now!
In no circumstances shall Fracture, Inc. be liable for any direct damage, indirect damage, incidental damage, consequential damage, or any other damage occurring to, including but not restricted to, family members, pets, cattle, neighboring fauna and flora with pre-existing conditions such as, including but not restricted to, being alive.
...
somewhat extented version: https://spacetruckergames.itch.io/fracture
...
v1.2:
- went other directions ;)
v1.1:








For some reason the Gates of Hell are wide open in a cemetary nearby! Send the demons back to where they belong by spelling out loud their true name!
A Halloween Guess'Em Up, using Zep's 7500 words dictionary
...
This game should have been released a year ago! I exhumed it this year, hoping I could polish it for good. but it seems I'm falling short once again! I'm not putting it back six feet under though, so here it is, in its (appropriate) semi-zombified state, in time for Halloween!
so, still a work in progress, but fully playable though. mostly the sound effects need some work...
Happy Halloween!

There's quite a bunch of pico-8 games on arcadeprehacks. they're leeched from here, and modified with "trainer" options. ads all around, no acknowledgment nor links to the original stuff. at least they could add a cracktro!
found the site searching for my "pellet muncher" on google. I lol'd at first. sad thing is, there's 1300+ "plays" there, while I painfully got a hundred "views" on itchio plus gamejolt. well, at least there are people playing my game...










here's a wip of another take on my tetramino-making mechanic (T-Factory 1)
hopefully a little more appealing / a little less awkward (?)

