Search

Compare Yourself

What software do you make games with? (select more then one)

Loading ... Loading ...

Make a super mario game (Part 1/4)

In this GameMaker video tutorial you learn how make a super mario like game. Part 1 focuses on creating the player object, basic room obejct, adding movement and jumping.

 

(credit GameProMaker)


2 comments to Make a super mario game (Part 1/4)

  • John Smith

    FATAL ERROR in
    action number 1
    of Step Event
    for object player:

    COMPILATION ERROR in code action.
    Error in code at line 4:
    if keyboard_check(vk_left) ” place_free(x-4,y) {x-=4}

    at position 30: Variable name expected.

    KEEP GETTING THIS, CAN YOU PLEASEEE CLARIFY???? thanks

  • Michael Rutherford

    You just forgot the “&&” in “if keyboard_check(vk_left)”. So this expression should look like this:

    if keyboard_check(vk_left) && place_free(x-4,y) {x-=4}

Leave a Reply

 

 

 

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>