Log In  
Follow
WoopyBoiii

Just a male aroace wooper here

[ :: Read More :: ]

So with my game, I want to add a title screen and in it would be a start button and controls button.
After the title screen, I publish it.
Edit: I also need to add charming music.

P#138645 2023-12-13 16:41 ( Edited 2023-12-13 16:46)

[ :: Read More :: ]

So I'm making a game that cycles through colors the sprite can turn into and I'm having a bit of trouble.

And this is the messy code:
if btn(4) then pal(12,2)
end
if btn(4) then pal(2,8)
end
if btn(4) then pal(8,12)
end
if btn(5) then pal(5,2)
end
if btn(5) then pal(2,8)
end
if btn(5) then pal(8,12)
end
if btn(5) then pal(12,5)
end

P#138611 2023-12-12 19:51

[ :: Read More :: ]

So I want to make a game that's satisfying to play with currently I have this:
function _init()
x=64
y=74
end

function _update()
if btn(⬆️) then y-=1
end
if btn(⬇️) then y+=1
end
if btn(➡️) then x+=1
end
if btn(⬅️) then x-=1
end
end

function _draw()
rectfill
spr(1,x,y)
print("blue square")
end

I'm not sure how to do the rectfill and fill it with color 2. I want to fill the background and maybe make z and x do something

P#138553 2023-12-11 12:49

[ :: Read More :: ]

How do I make the player 2 keys work? I'm trying to make s and f the movement for p2 but it won't work. It's just a little game movement thing. The code is here:

function _init()
position = 63
p = 63
end

function _update()
if btn(➡️) then
position+=1
end
if btn(⬅️) then
position-=1
end
if btn() then
p-=1
end
if btn() then
p+=1
end
end

function _draw()
cls()
spr(1,position,63)
player1score = 0
player2score = 0
player1name = "wooper"
player2name = "quagsire"
print(player1name)
print(player1score)
print(player2name)
print(player2score)
spr(2,p,73)
end

P#135407 2023-10-04 16:54 ( Edited 2023-10-04 16:55)

[ :: Read More :: ]

How do I switch the roles of the background gray blocks with all the floor pieces? I am quite stuck and tried myself, it didn't work

P#135177 2023-09-30 22:34 ( Edited 2023-09-30 22:35)

[ :: Read More :: ]

This thread is for ideas for my game.
The main character is a lil bird that changes color but I don't know what color he should turn with 1 dash and then again with 2 dashes.
This game is a Celeste type mod.

I don't know if he should have a scarf that changes color or if his body should so I need ideas.

P#134861 2023-09-25 01:25

[ :: Read More :: ]

Hardeste

Cart #hardestev3-0 | 2023-09-18 | Code ▽ | Embed ▽ | No License
8

Hardeste is a mod I made for Celeste Classic.

Features:
Madeline sprites are a bit different
Harder map
Strawbs are (hopefully.) all able to collect.

Post feedback in the comments and have fun!

P#134409 2023-09-15 20:57 ( Edited 2023-09-18 21:25)

[ :: Read More :: ]

PicoPong

Cart #wooppicopong-0 | 2023-09-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Have fun with an A.I and play PicoPong! PicoPong is ping pong against an A.I., have fun and leave feedback!

P#134390 2023-09-15 13:51

[ :: Read More :: ]

Cart #celeste2mod-0 | 2023-09-15 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
7

I made a modded version of Celeste Classic 2 but with Madeline, where I changed some sprites, and gave you a dash in tutorial area.
play the original mod Here

Give me feedback on how well I did in the comments.
Have fun!

P#134379 2023-09-15 03:05 ( Edited 2023-09-15 03:05)

[ :: Read More :: ]

Hello, I have a few things about coding. First how do I make a jump and/or map and animations? I am very new to coding and want to make a little game with some abilities.

P#134327 2023-09-14 12:43