So another question about dashing

So this is my dashing system (got help from these forums)

Aand i need help again because im a pleb.

Is there any way i can make this dashing system better?

Well with better i kinda mean is there a way to make the person able to jump after the dash.

My double jump kinda helps but i want him to be able to jump thrice.
So yeah

Show us the jump script. Why can’t you get it to work? You can’t use the basic jump since the player is mid air during your dash.

Ahh sorry i was away

So if i double jump and dash i want to be able to jump a third time

I am not familiar with the Do N node but it seems all you must do is replace that with a branch comparing an int that gets incremented every tike you jump and reset when you land, and decremented when you dash.

if you want a triple jump why not just use the functionality built into the character class. just go into the class defaults, find the character section, then set max jump count to 3. this will allow the character to jump up to 3 times before having to land.

i just noticed you only want the third jump after a dash. you could also do this by just modifying the max jump count via a scrip as there is nodes for get and set max jump count and get current jump count. so basically for your example after the launch character for the dash you could set the max jump to +1 then on reset can dash event set the max jump to -1 of its current value.