Jerky Jumping

I’m currently in the middle of a game project and came across a problem. Whenever I jump in the game(please try to understand me), the character jumps normally until he hits the floor. When that happens (at the time, he is obviously lower than the floor), he jerks upward to the exact postition of the floor. I know why this happens (the computer checks if his y postion is LOWER than the floor), but I don’t know how to fix it. Please help! Here is the code:
[AS]if (pc._y<floor && !jumping) {
pc._y += yvel;
}
if (pc._y>floor) {
pc._y = floor;
yvel = 15;
jumping = false;
}
if (jumping == true) {
pc._y -= yvel;
yvel -= 2;
}
if (Key.isDown(Key.UP) && !jumping) {
jumping = true;
}[/AS]

what i would do is change the operator < to <=

if (pc._y<=floor && !jumping) {
pc._y += yvel;
}
if (pc._y>floor) {
pc._y = floor;
yvel = 15;
jumping = false;
}
if (jumping == true) {
pc._y -= yvel;
yvel -= 2;
}
if (Key.isDown(Key.UP) && !jumping) {
jumping = true;
}

let me know if it helps :!

That won’t work… because the code sets his y postion straight back to “floor.” And if you were checking if he was equal with the floor, he would not be able to jump. :frowning: Sen! I need you!

[AS]
if (pc._y>floor) {
pc._y = floor;
yvel = 15;
jumping = false;
}
[/AS]
Here it looks like your trying to stop the jumping… but why would the movie clip need a velocity if jumping is false…
I could be wrong but its worth a shot
[AS]
if (pc._y>floor) {
pc._y = floor;
yvel = 0;
jumping = false;
}
[/AS]

Hoi

this solves your prob


if (pc._y<floor && !jumping) {
        pc._y += yvel;
}
if (jumping == true) {
        pc._y -= yvel;
        yvel -= 2;
}
// moved the if() down
if (pc._y>floor) {
        pc._y = floor;
        yvel = 15;
        jumping = false;
}
if (Key.isDown(Key.UP) && !jumping) {
        jumping = true;
}

flash reads up to down :slight_smile:
a good tip when trying solve prob’s like this is to look at the code and do very thing step by step in you mind. And when testing thing you should all ways have it after a change has been made :smiley:

Eidt: fixing typ0 :blush:

Ahhhh nicley spotted!

thanx :smiley:

hey! thanx alot!