Log In  
Follow
ultrabrite

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?

1
1 comment



This cart runs ok at first but fails when returned to from the breadcrumb.

Cart #fohekireba-0 | 2021-09-05 | Code ▽ | Embed ▽ | No License

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.

1 comment



Cart #podofimose-0 | 2021-02-20 | Code ▽ | Embed ▽ | No License
12

Just a quick experiment, slightly related to magnetic fields around wires and strange attractors.
10 minutes coding and hours contemplating...

Have fun!

../..

Lorenzo 2! The result might be different but for the same reasons.

Cart #mujazepafo-0 | 2021-04-23 | Code ▽ | Embed ▽ | No License
12

(x): reset
(o): toggle trace

12
3 comments



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):

Cart #fotubigibu-0 | 2020-05-05 | Code ▽ | Embed ▽ | No License
11

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.

  1. 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

[ Continue Reading.. ]

11
5 comments



they're clamped to color 15 it seems.
not a big deal, but maybe it's an easy fix?

2 comments



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 ;)

7 comments



Cart #bowobah-0 | 2019-09-18 | Code ▽ | Embed ▽ | No License
37

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...

37
6 comments



just a very old very unfinished project, not playable but small and hopefully readable.
free to use and modify or take from, make something awesome and have fun!

Cart #pong3d-0 | 2019-08-23 | Code ▽ | Embed ▽ | No License
2

2
0 comments



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!

60
32 comments



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

Connect the pipes!
There's an auto-connect feature to help you (most of the time). It can be disabled through the pause menu.
Reset the cart to replay a game (sorry!)

Early but old wip, I don't think I'll have time to work on it for a while so here it is, instead of gathering dust all alone.

1
6 comments



Cart #yunotuhabi-0 | 2020-10-30 | Code ▽ | Embed ▽ | No License
2

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:


Cart #54769 | 2018-08-06 | Code ▽ | Embed ▽ | No License
2


2
0 comments



Fixes:

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)

29
6 comments



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

[ Continue Reading.. ]

7
3 comments





Cart #47241 | 2017-12-10 | Code ▽ | Embed ▽ | No License


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

1
2 comments



Cart #51581 | 2018-04-13 | Code ▽ | Embed ▽ | No License
7

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:

  1. Install a rig from Fracture, Inc. in your garden, your field, your backyard!
  2. Buy the finest fracking chemicals from Fracture, Inc. (only $1 per barrel!)
  3. Start fracking!
  4. ...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:

[ Continue Reading.. ]

7
15 comments



Here's a simple one:

Cart #45944 | 2017-11-06 | Code ▽ | Embed ▽ | No License
14

use stat(x), where x is:

80..85 UTC time: year, month, day, hour, minute, second
90..95 Local time

Go crazy, guys!

14
16 comments



Cart #45594 | 2017-10-29 | Code ▽ | Embed ▽ | No License
5

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!

5
1 comment



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...

2
62 comments



Cart #45235 | 2017-10-15 | Code ▽ | Embed ▽ | No License
9

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

9
6 comments





Top    Load More Posts ->