improvements
This commit is contained in:
parent
3ccd79e0a0
commit
7181512d37
@ -67,7 +67,7 @@
|
||||
<AutoVariable width="fill" target="navbot.enable" label="Enable Navbot"/>
|
||||
<AutoVariable width="fill" target="navbot.scout-mode" label="Enable Scout Mode"/>
|
||||
<AutoVariable width="fill" target="navbot.spy-mode" label="Enable Spy Mode"/>
|
||||
<AutoVariable width="fill" target="navbot.heavy-mode" label="Enable Heavy Mode"/>
|
||||
<AutoVariable width="fill" target="navbot.heavy-mode" label="General Mode (only use if your class is not listed)"/>
|
||||
<AutoVariable width="fill" target="navbot.primary-only" label="Best Weapon only"/>
|
||||
<AutoVariable width="fill" target="navbot.jump-distance" label="Jump Distance"/>
|
||||
<AutoVariable width="fill" target="navbot.target-sentry" label="Try to target sentries"/>
|
||||
|
@ -767,7 +767,7 @@ static HookedFunction
|
||||
if (!spy_mode ||
|
||||
!hacks::shared::backtrack::isBacktrackEnabled)
|
||||
{
|
||||
if (!nav::navTo(tar->m_vecOrigin(), 5, true, false))
|
||||
if (!nav::navTo(tar->m_vecOrigin(), 5, false, false))
|
||||
last_tar = -1;
|
||||
}
|
||||
else
|
||||
@ -784,7 +784,7 @@ static HookedFunction
|
||||
}
|
||||
if (sorted_ticks.empty())
|
||||
{
|
||||
if (!nav::navTo(tar->m_vecOrigin(), 5, true,
|
||||
if (!nav::navTo(tar->m_vecOrigin(), 5, false,
|
||||
false))
|
||||
last_tar = -1;
|
||||
return;
|
||||
|
Reference in New Issue
Block a user