Log In  

BBS > Community Superblog
All Users | Following | GIFs | Postcarts | Off-site

Cart #nivz_skyattack-1 | 2019-07-18 | Code ▽ | Embed ▽ | No License
7


My work in progress retro demake of one of my favourite childhood games: Sky Attack

7
5 comments


Cart #hypercolor_paint-0 | 2019-07-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
29

Introducing Hypercolor Paint, a high-color painting application for the PICO-8.

Features:
Paint in either high color mode (flicker) or standard (dithered) mode.
While editing, pixels are treated as 56,535 level 3-channel color.
Use a variety of brushes, with control of color, size and pressure to achieve desired effects.
Save images (requires download)
Export images (requires download)

Example Images: (High color mode is simulated)

[ Continue Reading.. ]

29
7 comments


Each of these games fits inside a single tweet.

Cart #gimufopapi-0 | 2019-07-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

An Out Run style game with a day/night cycle. Left/right to move.

Cart #tezenibaro-0 | 2019-07-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3

You are a bird that must collect falling seeds in this arcade game. Up flies up, left/right move sideways. If you fall out of frame, you are just outside and need to move back in; if you fall below, all you have to do is hold up and you should reappear.

[ Continue Reading.. ]

3
0 comments


Cart #mrblast-0 | 2019-07-17 | Code ▽ | Embed ▽ | No License
23

23
3 comments


Hello, I'm happy to announce Fantasy Console Game Jam 4 hosted by Nopy and pixelherodev.

Pick your best fantasy console and make a game in one week!

Join the discord server if you haven't already: https://discordapp.com/invite/sFeDxWK

1
1 comment


Cart #graph_adventure-1 | 2019-07-17 | Code ▽ | Embed ▽ | No License
10

Here's a project I've been working on. It started as a simple viewer for different graphs, but then it turned into a platformer. The game is fully playable, but it needs some additional content, which is why I put it under Work in Progress.

What makes this project interesting is the fact that I didn't use any sprites or the map editor at all. Every stage is constructed using functions. Funtions can be very powerful for setting collision, as this way you can make pretty much any shape you want. You can also make the terrain dynamic and depend on time. I also added some simple physics into the game, utilising the difference in values of the function for the ball to gain some speed, but it could definitely be better. It's a bit slippery, but I wanted the ball to have some sense of momentum.

[ Continue Reading.. ]

10
6 comments


can someone tell me why I am running out of memory?

Cart #jajefutayu-1 | 2019-07-18 | Code ▽ | Embed ▽ | No License

@Catatafish I completely changed the question I realized i do not have an infinite loop. I just assumed since I was running out of memory.

this line seems to be doing it and idk why..

o:procx()
4 comments


Cart #picogotchi-0 | 2019-07-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
10

I just making my own tamagotchi (it called picogotchi). It is still on progress. Hope you like it.

10
3 comments


Cart #xwing_escape-0 | 2019-07-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

2
3 comments


Cart #picoware-20 | 2021-09-16 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
362

PICOWARE!

Do you love WarioWare? And do you love PICO-8? What we if we combine them into one game that you can play in your browser, right now?

Say hello to PICOWARE!

Over 50+ developers made 68 microgames during the 24 hour PICOWARE gamejam starting on July 27th 2019, with the intention of combining them together into one bigger game, called PICOWARE!

It's there! Up above! This is the game! The game all the cool kids play! Don't you want to join them? Do you want to stick out? Of course not!

SHARE PICOWARE!

Fancy a fancy link? Here!
is.gd/picoware

Use Twitter? Here's the official tweet-tweet!

[ Continue Reading.. ]

362
65 comments


Edit: not sure how I'm expected to display multiplication using the syntax here, but assume there's a X or star or whatever between 15 and i etc.

I was trying to initiate this statement here, which I can do:
for i=1,4 do
print(i, 15i-14, 15i-14, 14)
end

But then I wanted to move the diagonal array of 4 numbers with the arrow keys around the screen. I tried the code below but keep getting errors. I'm guessing my argument is setup wrong and I can't call i as the same variable in all these statements and make it work...? Can someone help me understand the immediate problems with the code, and then afterwards if viable suggest an alternative method of doing so. I'm still learning so my immediate concern is figuring out what is wrong here specifically.

function _init()
j= {
x=15i-14,
y=15
i-14
}
end

function _update()
if btn(0) then j.x-=1 end
if btn(1) then j.x+=1 end
if btn(2) then j.y-=1 end
if btn(3) then j.y+=1 end
end

[ Continue Reading.. ]

2 comments


can someone tell me why this throws the error "attempt to call global vec a table value"?
vec clearly has its metatable set with a call metaevent

vec=
{	
	x=0,
	y=0,
	mag=function(o) return sqrt (o.x^2+o.y^2) end,
 ang=function(o) return atan2(o.x,  o.y  ) end,
 nrm=function(o) return vec(o:ang()/360) end,  
}
vecmeta=
{
	 __call=function(o,x,y)
	  o  =o or {} 
			o.x=y and x or cos((x+90)/360)
			o.y=y and y or-sin((x+90)/360)	
			return setmetatable(o,vec)
		end,
		__eq=function(a,b)
			a=type(a) == "number" and vec(a,a) or a
			b=type(b) == "number" and vec(b,b) or b
			return (a.x==b.x and a.y==b.y)
		end,
		__add=function(a,b)
			a=type(a) == "number" and vec(a,a) or a
			b=type(b) == "number" and vec(b,b) or b
			return vec(a.x+b.x,a.y+b.y)
		end,
		__sub=function(a,b)
			a=type(a) == "number" and vec(a,a) or a
			b=type(b) == "number" and vec(b,b) or b
			return vec(a.x-b.x,a.y-b.y)
		end,
		__mul=function(a,b)
			a=type(a) == "number" and vec(a,a) or a
			b=type(b) == "number" and vec(b,b) or b
			return vec(a.x*b.x,a.y*b.y)
		end,
		__div=function(a,b)
  	a=type(a) == "number" and vec(a,a) or a
			b=type(b) == "number" and vec(b,b) or b
			return vec(a.x/b.x,a.y/b.y)
		end,
}
setmetatable(vec, vecmeta)

local test =
{
	pos=vec(0,0),
	vel=vec(0,0),
}
0 comments


This is a project I made for a class at college. It follows the trajectory of Victor Frankenstein through scenes from the novel "Frankenstein," analyzing how his 'family triangle' of relationships (that is, father, mother, and son, or the lack of these) changes over time. Each scene compares the location in the present day to their depiction in the novel (denoted as "1818").

Cart #frankenstein-1 | 2019-07-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

The code is rushed, highly redundant, and resembles delicious spaghetti; please don't look at it.

1
1 comment


Cart #fireflier-2 | 2019-08-12 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

Fire Flier

Make your way past the nasty June bugs to get to the end of the map. Touching the top of the map or a June bug will end the game. Tap UP button to fly

0 comments


FIRE FLYER

Demo for the first Pico-8 game I am trying to create. Final product will be named "FireFlyer" by Jake Fischer

1 comment


Cart #mcleopold_memory-0 | 2019-07-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Memory Card Game

Flip over two card to see if the pictures match. 1 point for each match is awarded.

For 1 to 4 players. Use a controller for each player.

  • Start: use the menu to:

    • select player count (and reshuffle deck)
    • toggle music on/off
  • Up/Down/Left/Right: select card to flip over

  • Z: flip card over
1
0 comments


Cart #breakoutfishy-0 | 2019-07-15 | Code ▽ | Embed ▽ | No License

Press 'x' to start the game.

Normal game of breakout; left and right arrows. WIP.

0 comments


Cart #anotherbogbyaloser1730-0 | 2019-07-15 | Code ▽ | Embed ▽ | No License

Simply push Z to play. Some Computers use X, not sure why using a different computer makes the key change.By Molly Ince CIS 102 T302

0 comments


Cart #tmbstn1-0 | 2019-07-15 | Code ▽ | Embed ▽ | No License
1


Midterm project for CIS 102

1
0 comments


Cart #rakobikeha-0 | 2019-07-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

1 comment




Top    Load More Posts ->