Log In  

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

Cart #puzzlemod-4 | 2024-04-03 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
13

13
1 comment


Skull and Roses

Cart #jugiganifo-1 | 2024-04-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

Skull and Roses is adapted from the excellent Herve Marely card game Skull Link to BGG

Gameplay

Start of the hand

Each player chooses one card and places it face down on his mat.

Placement of cards: Place a card or challenge

Starting with the first player and going clockwise around the table, each player may either:

  • Place another card face down on their mat
  • Or they may challenge. A player with no cards in hand must challenge.

Challenge: Pass or raise the bid

The player who issued the challenge bids the number of cards he intends to flip.
Going clockwise, each player must then either:

[ Continue Reading.. ]

4
0 comments


I'm new to Pico 8

Cart #gekwalking748neworange-0 | 2024-03-31 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA


I've been developing this simple game as a first project where you play as "GeK" a simple character that has animations when walking around, however i've found that when moving diagonally it makes the character faster than usual. This issue is very confusing to me and I know it has something to do with the Pythagorean theorem, and I need something called a "movement vector" My code is simple as it has a variable known as speed that is set to 1 and is used when pressing a direction to move by 1 pixel. The character also has a hat and tail that follows it and is supposed to be locked on at all times.
I'd really appreciate it if anyone knows the solution to my problem.

[ Continue Reading.. ]

3 comments


Cart #uforide-1 | 2024-03-31 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

Cross the seas of blue.

Look the free birds fly.

Ride the UFO.

2
2 comments


Cart #cellesellec-0 | 2024-03-31 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2

IWCTM

wdym trash??

2
7 comments


Is the education edition broken right now? I tried running the following:

INSTALL_DEMOS
CD DEMOS
LOAD HELLO 
RUN

Then pressing ESC twice. But the editor doesn't show up. Am I doing anything wrong here?

4 comments


Hi! I am new here

I just barely bought Pico 8 and used some tutorials online to make this simple animated "GeK"
If anyone has any tips or just criticism for beginners like me, I'd very much appreciate it.
(I have had experience with html and JavaScript before)

0.3 finally released

Cart #gekwalking748neworangesound-1 | 2024-04-02 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA


Controls are simple: Arrows move GeK and X makes him "speak"

This is 0.2

Cart #gekwalking748neworange-0 | 2024-03-31 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA

[ Continue Reading.. ]

0 comments


Very much an early work in progress. Wanted to make a super small arcade game, something you might see with vector graphics and a roller ball for controls.

I haven't made games in awhile, been trying to work on larger projects, and that has been pretty daunting. But then I went to Can Can Wonderland, a very cool arcade in St. Paul, Minnesota, USA. I played a bunch of super retro arcade games there, stuff like Atari Football and Anti-Aircraft. I was inspired to try to make a game like that, something with very simple controls and concepts.

Controls:
up/down/left/right - Move cursor
Z - switch cursor direction between left and right
X - turn closest plane in the direction of the cursor

This is very much a proof of concept. If I go further with this, I imagine that each color plane would have to be directed to a certain edge of the circle, and later levels would have storm areas you have to avoid, and UFOs that are worth bonus points.

Cart #aircontrollerdemo-0 | 2024-03-31 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

[ Continue Reading.. ]

1
0 comments


Cart #darkscience001music001-1 | 2024-04-09 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

A battle theme for my game

Boy, oh boy. Making video games takes a bunch of work.

I’ve decided to release my game as a serial, like a comic book.
I will need to make a couple of enemies, puzzles, sfx, throw it all in a level and move on to the next entry.

Hopefully I can bundle everything in a multi cart, or picotron cart.

edit:
removed reverb

1
0 comments


Cart #screensave1-2 | 2024-03-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

1
0 comments


Cart #rbndr-1 | 2024-06-26 | Code ▽ | Embed ▽ | No License
4

because there can never be enough Celeste mods, just changed the colour palette a bit and put in a self insert main character

edit: fixed Maddy's name

4
2 comments


Cart #circle_collision_example-0 | 2024-03-30 | Code ▽ | Embed ▽ | No License
3

This is a simple example on how circle collision works.

All you need from this cartridge is the function:

function circ_col(c1, c2)
  local dx = c1.pos.x - c2.pos.x
  local dy = c1.pos.y - c2.pos.y
  local distance = sqrt(dx*dx + dy*dy)
  return distance <= (c1.r + c2.r)
end

If you want to check if two circles are colliding, you simply pass them as parameters c1 and c2 see an example bellow:

c1 = {
    pos={x=64,y=64},
    r = 4 --size the radius would have to be for a 8x8 sprite
}

c2 = {
    pos={x=70,y=70},
    r = 8 --size the radius would have to be for a 8x8 sprite
}

collides = false

function _update()
   collides = circ_col(c1, c2)
end

function _draw()
   cls()

   if collides then 
      print("colliding",4,4,11)
   end

   --draw the circles here - mind you in most projects you woudn't, usually you would have them invisible and have them
   --at the same position (or slightly offsetted) as your player
   --i would recommend drawing them anyway at the start to see that the are always where they are supposed to be
   circ(c1.pos.x,c2.pos.y,c1.r,11)
   circ(c2.pos.x,c2.pos.y,c2.r,8)
end

function circ_col(c1, c2)
  local dx = c1.pos.x - c2.pos.x
  local dy = c1.pos.y - c2.pos.y
  local distance = sqrt(dx*dx + dy*dy)
  return distance <= (c1.r + c2.r)
end
3
4 comments


Cart #rocketdrop-0 | 2024-03-30 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
2


You drop rocket on person.

2
0 comments


Poochie Survivors!

Can you survive to 11:00 minutes in the new 'Help me Balance' update?

  • 4 new Poochies
  • 2 new weapons
  • 2 new items
  • Old weapons have been buffed (maybe too much?)
  • Fetch Stick now targets enemies
  • New results screen
  • Stuff to do at home
  • Make the clock faster
  • Faster performance
  • Bangin' music
  • 1 secret character
  • Take a snooze
  • Bark for fun!

Cart #poochie_survivors-5 | 2024-04-18 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
25

I'd love some feedback on how easy or difficult you think it is. Balancing the attack powers and enemies has been quite the challenge. <3

[ Continue Reading.. ]

25
11 comments


Cart #laserbeams-6 | 2024-09-11 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
17

Lots of enemies!
Lots of bullets!!
Lots of beams!!!

17
4 comments


Cart #spikes_n_apples-0 | 2024-03-29 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
4

A small little game made for fun. Originally a collaboration project with a beginner coder friend who quickly lost interest. Feel free to add critique although please understand this wasn't intended to be particularly good.

controls:
Press O (z) to jump
Press X (x) to eat

Instructions:
A timer is ticking down. Quickly choose whether you will jump over the incoming obstacles or attempt to eat them. Eating a spike will give you a "GAME OVER", but eating a fruit will increase your speed and grant you additional time to extend your streak. Go for the highest score you can before time runs out! (my record is 8100 if you want to try and beat it)

4
0 comments


Cart #zomutodoka-0 | 2024-03-29 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
9

9
6 comments


Cart #bahuzusefu-0 | 2024-03-29 | Code ▽ | Embed ▽ | No License
1


I tried making somewhat of platformer engine.
As you can see, it is very buggy. If someone could help with the weird wall collision thing then that would be great.

1
0 comments


Cart #bigman1-0 | 2024-03-29 | Code ▽ | Embed ▽ | No License
3


This is my first PICO-8 game, I hope you like it!

3
0 comments


When I click Code below any cart on the BBS, the block is just empty and contains no code. Not sure if this is related to the recent styling change. I can't say for sure when this started, but I just noticed it today for the first time.

In case it's browser specific, I'm on Firefox 124.0.1 on Linux.

5
11 comments




Top    Load More Posts ->