Sorry after some test i realise it's happen in any map when you pass a portal or a door etc... and you was in "combat disabled"and after the door,portal there are some mob and you pass instant in combat.the bot attack directly but don't switch back your weapons like the bot can't swap between 2 autoattack??
Then something must be wrong in the profile-writing.
CombatDisabled is supposed to appear in 2 cases :
Code:
if (!MiscHelper.IsCombatEnabled || MiscHelper.IsRunningZergProfiles)
or
Code:
if (GearBehaviors.HasDanettasEquipped() && (!MiscHelper.IsCombatEnabled || MiscHelper.IsRunningZergProfiles))
IsCombatEnabled returns the Bot combat state (if DB is allowed to kill)
IsRunningZergProfiles returns the Zerg state of GSR (set by using the XML tag)
In both cases, one of those 2 returns true, so it's profile related. (we're either using ToggleTargeting or GSRZerg xml tag somewhere wrongly)
Maybe link the profile so I can take a look?