Discuss Scratch

scratcher3675467
Scratcher
89 posts

how do i make a super mario game?

hello, how do i make a super mario game?
ticoeteco23gb
Scratcher
100+ posts

how do i make a super mario game?

Hello! If you want to make a scrolling platformer like Super Mario, I recommend searching on YouTube “Griffpatch title scroll platformer tutorial”. If you do not want your game to have a moving camera, instead, search “Griffpatch platformer tutorial series”. Hope this helps!
Pixilized
Scratcher
100+ posts

how do i make a super mario game?

Here is a great tutorial by griffpatch that teaches you the basics of making a platformer in scratch. Once you have that down, I suggest watching his side scrolling platformer tutorial, or his tile scrolling platformer tutorial. If you want to learn without leaving the scratch site, he also has a project tutorial for a simple platformer.
scratcher3675467
Scratcher
89 posts

how do i make a super mario game?

something different please
NMario84
Scratcher
1000+ posts

how do i make a super mario game?

I think the “best” would be Griffpatch's tile scrolling platformer, since it is basically Mario. However, you said “something different” So we don't know what else to tell you.

You could always learn by experimenting yourself. True that there are many different ways to code the same thing. But as long as it “works for you” it should be fine.
scratcher3675467
Scratcher
89 posts

how do i make a super mario game?

NMario84 wrote:

I think the “best” would be Griffpatch's tile scrolling platformer, since it is basically Mario. However, you said “something different” So we don't know what else to tell you.

You could always learn by experimenting yourself. True that there are many different ways to code the same thing. But as long as it “works for you” it should be fine.

thank you for the advice! game coming out soon.
greedy_4
Scratcher
23 posts

how do i make a super mario game?

how make mario game on scratch make enemys make levels make mario still on level make mario move like xv -xv

Last edited by greedy_4 (Nov. 15, 2023 06:03:39)

greedy_4
Scratcher
23 posts

how do i make a super mario game?

greedy_4 wrote:

how make mario game on scratch make enemys make levels make mario still on level make mario move like xv -xv
it works make mobile stick when up jump when left it moves moves mario -xv when right it moves mario xv
greedy_4
Scratcher
23 posts

how do i make a super mario game?

re
Pixilized
Scratcher
100+ posts

how do i make a super mario game?

greedy_4 wrote:

how make mario game on scratch make enemys make levels make mario still on level make mario move like xv -xv
Hi! Try reading the previous posts in this discussion. However, if you need new advice, try making your own topic. Thanks!
DOGZOMBIES3
Scratcher
13 posts

how do i make a super mario game?

ticoeteco23gb wrote:

Hello! If you want to make a scrolling platformer like Super Mario, I recommend searching on YouTube “Griffpatch title scroll platformer tutorial”. If you do not want your game to have a moving camera, instead, search “Griffpatch platformer tutorial series”. Hope this helps!
You can also make it mobile friendly using @griffpatch 's Joystick YouTube tutorial.\
MisterSmart123
Scratcher
1 post

how do i make a super mario game?

I personally think that Will_Wam's Mario game is the best but he could have made a tutorial vid
scratcher3675467
Scratcher
89 posts

how do i make a super mario game?

MisterSmart123 wrote:

I personally think that Will_Wam's Mario game is the best but he could have made a tutorial vid
bro is this your only post?
scratcher3675467
Scratcher
89 posts

how do i make a super mario game?

OK I'm listening to your posts and adding them to this prototype https://scratch.mit.edu/projects/938055044
Miniman637
Scratcher
43 posts

how do i make a super mario game?

Mario is easy. You'll need it to move for the right controls, but when it gets to the center of the screen, Mario will stop and the Level will scroll.
Here are the scripts:

whenclickedgotox:-240y:0foreverifx position>0thenchangescrollxbyxvelsechangexvbyxv*0.65
Miniman637
Scratcher
43 posts

how do i make a super mario game?

The Level needs to scroll, so there will be different sprites for the Level. They will all be next to each other, scrolling. And they will switch to the right costumes for each Level. Each script is the scripts for all the level sprites in order. There will be 10 level sprites, so that's enough for a whole level.
Here are the scripts for them all:



whenclickedforeverswitchcostumetoLevelsetxtoscrollx+480*0whenclickedforeverswitchcostumetoLevelsetxtoscrollx+480*1whenclickedforeverswitchcostumetoLevelsetxtoscrollx+480*2whenclickedforeverswitchcostumetoLevelsetxtoscrollx+480*3whenclickedforeverswitchcostumetoLevelsetxtoscrollx+480*4whenclickedforeverswitchcostumetoLevelsetxtoscrollx+480*5whenclickedforeverswitchcostumetoLevelsetxtoscrollx+480*6whenclickedforeverswitchcostumetoLevelsetxtoscrollx+480*7whenclickedforeverswitchcostumetoLevelsetxtoscrollx+480*8whenclickedforeverswitchcostumetoLevelsetxtoscrollx+480*9
Miniman637
Scratcher
43 posts

how do i make a super mario game?

In this game, we will need touching sensors for Mario, a top, a bottom, a left, and a right. Each of them will follow Mario. But we need them to hide else the detection sprites will make the game look ugly. (No offense.)
Here's the code for the right sensor:

whenclickedsetghosteffectto100forevergotox:x positionofMario+10y:y positionofMario
Miniman637
Scratcher
43 posts

how do i make a super mario game?

Now for the left one:

whenclickedsetghosteffectto100forevergotox:x positionofMario-10y:y positionofMario
Miniman637
Scratcher
43 posts

how do i make a super mario game?

Now for the top one:

whenclickedsetghosteffectto100forevergotox:x positionofMarioy:y positionofMario+10

Last edited by Miniman637 (June 12, 2024 00:43:25)

Miniman637
Scratcher
43 posts

how do i make a super mario game?

Now for the bottom one:

whenclickedsetghosteffectto100forevergotox:x positionofMarioy:y positionofMario-10

Powered by DjangoBB