This commit is contained in:
Boki 2026-02-22 21:46:48 -05:00
parent bd55e3031d
commit 7b28e776d0
6 changed files with 25 additions and 16 deletions

View file

@ -100,7 +100,7 @@ public class CombatManager
else
_manaStableCount = 0;
await _game.MoveMouseFast(mouseX, mouseY);
_game.MoveMouseInstant(mouseX, mouseY);
_game.LeftMouseDown();
await Helpers.Sleep(Rng.Next(20, 35));
@ -121,7 +121,7 @@ public class CombatManager
}
else
{
await _game.MoveMouseFast(mouseX, mouseY);
_game.MoveMouseInstant(mouseX, mouseY);
if (mana < 0.30f)
{
@ -132,7 +132,7 @@ public class CombatManager
_manaStableCount = 0;
}
await Helpers.Sleep(Rng.Next(80, 120));
await Helpers.Sleep(10);
}
}