[Coding for Apex Legends] External Auto SuperGlide | General Hacking | Crax

Welcome To Crax.Pro Forum!

Check our new Marketplace at Crax.Shop

   Login! SignUp Now!
  • We are in solidarity with our brothers and sisters in Palestine. Free Palestine. To learn more visit this Page

  • Crax.Pro domain has been taken down!

    Alternatives: Craxpro.io | Craxpro.com

[Coding for Apex Legends] External Auto SuperGlide

[Coding for Apex Legends] External Auto SuperGlide

LV
0
 

sirko

Member
Joined
Apr 8, 2023
Threads
10
Likes
0
Awards
2
Credits
1,006©
Cash
0$
Hi CraxPro,
I implemented automatic SG for 99% success rate. And whatever the wall height.
Here's a concept on how I'd implement, you'll need to do some change by yourself.
Hope someone improve this.

Code:
bool startSg = false;
float m_traversalStartTime = RPM<float>(ProcessId, LocalPlayerAddr + 0x2b50);
float m_traversalProgress = RPM<float>(ProcessId, LocalPlayerAddr + 0x2b4c);
auto HangOnWall = -(m_traversalStartTime - WorldTime);

while(ingame){
    if (m_traversalProgress > 0.87f && !startSg && HangOnWall > 0.05f && HangOnWall < 1.5f) {
    //start SG
        startjumpTime = WorldTime;
        startSg = true;
    }

    if (startSg) {
    //press button
        WPM<int>(ProcessId, BaseAddress + OFFSET_IN_JUMP + 0x8, 7);
        if ((WorldTime - startjumpTime) > 0.007) {
            WPM<int>(ProcessId, BaseAddress + OFFSET_IN_DUCK + 0x8, 6);
        }
    }
    
    if ((WorldTime - startjumpTime) > 1.5f && startSg){
    //need to release button
        WPM<int>(ProcessId, BaseAddress + OFFSET_IN_JUMP + 0x8, 4);
        WPM<int>(ProcessId, BaseAddress + OFFSET_IN_DUCK + 0x8, 4);
        startSg = false;
    }


}
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Top Bottom