Hi! I am using Game Maker 8
I am using the following information for my "Player.Object":
CREATE:
CODE:
grav=.3;
mspeed = 8;
STEP:
CODE:
if (place_free(x,y+1)) {
gravity = grav;
}else{
gravity = 0
}
COLLISION -><- WITH "GROUND":
CODE:
vspeed = 0;
SPACE BUTTON:
CODE:
if!(place_free(x,y+1)) {
vspeed -= 8;}
This scripts are used to make a character JUMP, and I have used them sooo many times before, but suddenly it doesn't work at all!
It is a bug because it just randomly popped up, and when the scripts worked one second earlier too!
Look at this VIDEO if you want a clearer explanation (please look in FULLSCREEN):
http://www.youtube.com/watch?v=V910V-MoIZo
PLEASE HELP ME! I am mad at Game maker because I have experienced so many random and unlogical bugs!
/Thank You
I am using the following information for my "Player.Object":
CREATE:
CODE:
grav=.3;
mspeed = 8;
STEP:
CODE:
if (place_free(x,y+1)) {
gravity = grav;
}else{
gravity = 0
}
COLLISION -><- WITH "GROUND":
CODE:
vspeed = 0;
SPACE BUTTON:
CODE:
if!(place_free(x,y+1)) {
vspeed -= 8;}
This scripts are used to make a character JUMP, and I have used them sooo many times before, but suddenly it doesn't work at all!
It is a bug because it just randomly popped up, and when the scripts worked one second earlier too!
Look at this VIDEO if you want a clearer explanation (please look in FULLSCREEN):
http://www.youtube.com/watch?v=V910V-MoIZo
PLEASE HELP ME! I am mad at Game maker because I have experienced so many random and unlogical bugs!
/Thank You