From 24c120c7e7ff392977b0d8139a6725b0894698dd Mon Sep 17 00:00:00 2001 From: BenCat07 Date: Tue, 9 Jan 2018 16:00:36 +0100 Subject: [PATCH 1/2] Fix followbot not jumping at all --- src/hacks/FollowBot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hacks/FollowBot.cpp b/src/hacks/FollowBot.cpp index 4e6ad129..612f9b5a 100644 --- a/src/hacks/FollowBot.cpp +++ b/src/hacks/FollowBot.cpp @@ -802,7 +802,7 @@ void WalkTo(const Vector &vector) } else { - idle_time = 0; + idle_time++; } } From 7187b7ee5ad9c270047f23d1861512cb9643f467 Mon Sep 17 00:00:00 2001 From: BenCat07 Date: Tue, 9 Jan 2018 16:11:07 +0100 Subject: [PATCH 2/2] Update FollowBot.cpp --- src/hacks/FollowBot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hacks/FollowBot.cpp b/src/hacks/FollowBot.cpp index 612f9b5a..46873b3e 100644 --- a/src/hacks/FollowBot.cpp +++ b/src/hacks/FollowBot.cpp @@ -785,7 +785,7 @@ void WalkTo(const Vector &vector) { // Check if the local player is not moving - if (CE_VECTOR(LOCAL_E, netvar.vVelocity).IsZero(1.0f)) + if (CE_VECTOR(LOCAL_E, netvar.vVelocity).IsZero(3.5f)) { // Set idle time if we havent already if (!idle_time)