Log In  
Follow
ReeceGames

Cart #rg_discord_swarm-0 | 2021-06-05 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
3


yeah is just a bullet hell.
made for the DISCORD JAM, in under 2000 characters (preferably 1990 characters but shhhhhhhhhhhhh)
you win when the game crashes.

3
2 comments



Found on windows 0.2.0I
If you select text in the console window and then execute a printh call, PICO-8 hangs seemingly indefinitely

2 comments



I'm working on a raycaster, and I'm stuck on trying to make billboard sprites; I think that it would be a waste to not at least show off what I had, so here's a little demoey thing.

Can you find all 4 hidden orbs?

Cart #rg_raycaster_demo-0 | 2020-06-18 | Code ▽ | Embed ▽ | No License
14

Hint 1:

There are some walls that are intangible.

Hint 2:

The maze is a grid of rooms, so a map will work fine.

Hint 3:

There is one tile in the stone hallway that is different to the others.

Map of the maze:

Y: Yellow pillar room/entrance
W: White pillar room
E: Exit
+  +--+--+--+--+--+
 Y ############ W |
+  +--+--+--+ #+--+
|  |  |  |#####   |
+  +--+--+# +--+  +
|  |#####|# |     |
+  +# + #+# +  +  +
|  |# | #|# |  |  |
+  +# + #+# +  +  +
|  |# | ### |  |  |
+--+# +--+--+--+--+
|   ############ E  
+--+--+--+--+--+--+

[ Continue Reading.. ]

14
6 comments



Cart #rg_cityboom-1 | 2020-04-17 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA


I made that one minigame from please don't touch anything as a tweettweetcart
Press (X) to drop bomb
(you can also press z, to speed up the plane, since you win by touching the lower right corner)
By the way, the whole cart is public domain.
Do whatever.

0 comments



Vector math for PICO-8!

Have you ever been looking at your code and been like:
"Hmm, i sure do add two numbers to another set of two numbers a lot," then do i have the solution for you!
At the low low price of like 400 tokens, PICO-8 vector math can be yours!
I originally made this to streamline a platformer I may or may not ever finish, but I realized that other people might want this, flagrant waste of tokens or not.

Features!


-Constructor function: vec2(x,y) will make a vector, vec2(x) copies x twice
-The four basic functions, plus exponetation
-The concentation operator (..) does dot products
-A normalize function

The code

There are two versions of the whole program. One handles errors more gracefully, while the other has a smaller token footprint

Required functions:

The metatable depends heavily on these two functions

  • Constructor

This function creates and gives the right metatable to the given two numbers, saving a few tokens every time you or the metatable itself wants to make a new metatable

function vec2(x,y)
 if (not y) y=x
 return setmetatable({x=x,y=y},vec2mt)
end
  • Argument preperation

This function returns a list of two vectors, either the two vectors passed, or a vector and then a doubles number. This function means you cannot divide a number by a vector, or subtract a vector from a number.

function vecargs(a,b)
if(type(a)=="number")a,b=b,a
 if type(b)=="number" then
  return {a,vec2(b)}
 elseif getmetatable(b)==vec2mt then
  return {a,b}
 end
end

[ Continue Reading.. ]

5
9 comments



Cart #rg_tweettweet2-0 | 2019-05-20 | Code ▽ | Embed ▽ | No License


My entry for the second tweettweetjam
Play the game here.

0 comments



look its karel the robot

Cart #karel_the_robot-0 | 2019-05-01 | Code ▽ | Embed ▽ | No License

wow karel is an intro-duction to programming that ueses phive whole instructions.
karel can move(), which makes it go forewarde
karel can turnleft() whchic should be obvious
karel may dropchip() thath puts a chip on the ground?
karel can takechip() and that picks up any chips that are on the same tile as it
karel is capable of checkchip() whitch returns the chipcode of the chip its on

okay if you want human redable instruction go to this link

0 comments



Cart #rg_snowytweet-0 | 2018-12-23 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


I was getting a little bored of my main project, so i took a detour and made a tweetcart!
All it has are 2 little houses on a snowy hill, but it looks pretty nice in my opinion.

2
4 comments



Release!

Cart #phagocytosis_reecegames-0 | 2018-12-02 | Code ▽ | Embed ▽ | No License
2


It's done! I might still add on to it, but it's a finished game now!

How to play

This is you:
[0x0]

Move with the directions, and start digesting with [O]
Moving and digesting take up energy, and if you run out of energy, you take massive damage to the health meter

Enemies

Viruses
[0x0]

[ Continue Reading.. ]

2
3 comments