Log In  

Cart #celeste_arcade-4 | 2023-07-31 | Code ▽ | Embed ▽ | No License
9

A Celeste mod that includes:

• Real time multiplayer
• Score system

To do:

• Highscore table
• Better UI
• 4 players?

500 points are removed when the player dies
500 points are awarded to the player who completes the room first
1000 points are awarded when a player collects a berry
1250 points are awarded when a player collects a flying strawberry

Please comment any bugs you encounter

P#132290 2023-07-23 18:04 ( Edited 2023-07-31 15:31)

1

This is is pretty cool! Not sure how doable it is, but adding collisions between players would be cool and add more chaos :)

(In fact maybe redoing the levels and such and adding powerups would make it really unique)

P#132297 2023-07-23 22:03 ( Edited 2023-07-28 14:08)

When I got to 2900m, Madeline just disappeared and I couldn't do anything, which was kinda disappointing since I was almost at the end

P#132311 2023-07-24 06:13

Madeline missing at 2900!!??

P#132317 2023-07-24 07:26

Only Lani Appears At 2900m In This Version But Not Madeline

P#132538 2023-07-29 20:53
1

A few bugs I've noticed:

  1. Clouds don't move Lani correctly
  2. Crumble floors don't break when Lani touches them
P#132569 2023-07-30 20:36
1

i'm still figuring out how to select lani

P#132755 2023-08-05 10:00

Reply @VaniaIsAnIdiot :

According to the codes:

    if is_title() then
        if btnp(❎) then
            if p1_in then
                p1_in=false
                sfx(5)
            else
                p1_in=true
                sfx(1)
            end
        end
        if btnp(❎,1) then
            if p2_in then
                p2_in=false
                sfx(5)
            else
                p2_in=true
                sfx(1)
            end
        end


You need to press A on the keyboard (or any ❎ of player2 keypress thingy) to select the second character.

P#133013 2023-08-13 16:36 ( Edited 2023-08-14 12:12)

cool

P#133471 2023-08-24 18:30

I died infinitely in 1100M

P#133899 2023-09-03 20:55

lmao if you get the maximum score it wraps around back to 500
i assume this is because the score went past the integer limit, you could probably get around this by storing the number as 125 instead of 1250, for example, and then adding a 0 wherever it's displayed

P#133991 2023-09-06 18:46 ( Edited 2023-09-06 18:47)
2

@girres42 I fixed the issue with score overflows, so now you can get the maximum score without the game bugging out. Putting the cart here if you want to upload it

P#134185 2023-09-11 17:36 ( Edited 2023-09-11 17:37)

the only thing i need is what sprite number everything is and how to switch rooms in coding

P#134189 2023-09-11 21:37 ( Edited 2023-09-11 21:44)
1
P#134737 2023-09-21 21:54

[Please log in to post a comment]