Back To Top

FRHD BIG AIR TRICKS

Discussion in 'Third Party Scripting & Development' started by HtH_RIDES, Feb 13, 2026 at 8:47 PM.

Tags:
  1. HtH_RIDES

    HtH_RIDES Active Member Team Balloon Official Author

    Super cool suggestion:
    Big air tricks, just an idea.

    Those jump tracks really lack fun somtimes. So i came up with an idea...
    How about adding trick hotkeys to the ride to really spice up your ghost!!!
    How it would work is that if i press a certain key (lets say, M) the rider will start the trick. Once the trick is complete, it will automatically close the trick.
    But if you are riding a slightly smaller jump, then pressing the same key to start/execute the trick before the trick finishes, it will close the trick earlier.

    Im not a very good coder but i can code some basic things.
    Idk what language FRHD uses so i just used javascript:
    Code:
    // when M is pressed
    if (!trickActive) {
        trickActive = true;          // start trick
        rotationDone = 0;
    } else {
        trickActive = false;         // early close
    }
    
    // every frame while trick is active
    if (trickActive) {
        rider.vehicle.radians += ROTATION_SPEED;
        rotationDone += Math.abs(ROTATION_SPEED);
    
        // auto close after full trick completed
        if (rotationDone >= Math.PI * 2) {
            trickActive = false;
    This is what i would call it a toggle-style trick with auto-finish OR manual early close.
    I just used the basic frontflip for this, but ill make it into somthing else.

    It SHOULD look like this:
    upload_2026-2-13_20-35-25.png
    (https://www.freeriderhd.com/t/944357-forest-slopes by GUN)
    Just a quick sketch btw...

    So he is doing a superman seat grab.
    Obviously this would take a very long time and alot of animating and coding skills to do it.

    Could possibly be implemented in the next update (not that we are getting an update any time soon) or just be an add on using Tampermonkey or devtools.

    Or maybe this will be too difficult and draining that nobody will be willing to do it.


    Drop your criticism in the thread!!!!!!!!!!!
     
    Cryx likes this.
  2. HtH_RIDES

    HtH_RIDES Active Member Team Balloon Official Author

    new track dropping 17th Feb btw
     

Share This Page