From 953d694a74bdfefc760cf59a41b5e08e66344ae1 Mon Sep 17 00:00:00 2001 From: IKennyAgain <84321420+IKennyAgain@users.noreply.github.com> Date: Wed, 19 May 2021 15:10:34 +0300 Subject: [PATCH] Updated Bots are now mantling in "stand" stance, that prevents them from stuck. --- userraw/maps/mp/bots/_bot_internal.gsc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/userraw/maps/mp/bots/_bot_internal.gsc b/userraw/maps/mp/bots/_bot_internal.gsc index b288c8d..f020997 100644 --- a/userraw/maps/mp/bots/_bot_internal.gsc +++ b/userraw/maps/mp/bots/_bot_internal.gsc @@ -550,7 +550,7 @@ doBotMovement() // climb through windows if (self isMantling()) - self crouch(); + self stand(); startPos = self.origin + (0, 0, 50); @@ -1974,11 +1974,11 @@ movetowards(goal) lastOri = self.origin; } - else if(timeslow > 1.5) + else if(timeslow > 0.75) { self thread doMantle(); } - else if(timeslow > 0.75) + else if(timeslow > 1.5) { self crouch(); }