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)
|
|||||
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) |
|||||
|
Copyright © 2013 GameMaker Video Tutorial - All Rights Reserved | RSS 81 queries. 0.464 seconds. |
|||||
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
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}