Blueprint Player Movement problem

Hi guys,
I’m working at my third person blueprint atm but I have a problem.

I have:

http://prntscr.com/flk40i

But need:

https://docs.unrealengine.com/latest/images/Gameplay/HowTo/CharacterMovement/Blueprints/Setup_2/Character_Jump.png

And I don’t understand/find how to connect the max walk speed to condition.

Greetings,
Max

Sorry for bad English.

“max walk Speed” can’t be a condition (true or false) itself.
but “is max walk speed > 160?” can be.

so you grab your max walkspeed variable and add a new node, search vor “>” or “<” and connect that to your branch.

Thanks!

Now just need the Target Velocity but can’t find it. You know the name maby?

Greetings,
Max

velocity is the Speed and direction you are moving in.
to get a velocity, the object has to move already.

in your example the character movement automatically adds (or should at least) the target velocity, if you awnt to get the “vector length”

Nmv.

Got it all! Thanks!