mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Check player is in range each entity attack
This commit should make it so that MCC will check that the player is in range before attacking entities each iteration of the cooldown. This was problematic before, because, if the entities were still they would be added to the attack list, and then if they stayed still and the client teleported away, it would still attempt to attack the entities, even though it is now out of range.
This commit is contained in:
parent
7f1ad036b1
commit
770a82e2d2
1 changed files with 20 additions and 4 deletions
|
|
@ -40,9 +40,15 @@ namespace MinecraftClient.ChatBots
|
|||
attackCooldownCounter = attackCooldown;
|
||||
if (entitiesToAttack.Count > 0)
|
||||
{
|
||||
foreach (KeyValuePair<int, Entity> a in entitiesToAttack)
|
||||
foreach (KeyValuePair<int, Entity> entity in entitiesToAttack)
|
||||
{
|
||||
InteractEntity(a.Key, 1);
|
||||
// check that we are in range once again.
|
||||
bool shouldAttack = handleEntity(entity.Value);
|
||||
if (shouldAttack)
|
||||
{
|
||||
// hit the entity!
|
||||
InteractEntity(entity.Key, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -98,10 +104,16 @@ namespace MinecraftClient.ChatBots
|
|||
attackCooldown = Convert.ToInt32(Math.Truncate(attackCooldownSecond / 0.1) + 1);
|
||||
}
|
||||
|
||||
public void handleEntity(Entity entity)
|
||||
/// <summary>
|
||||
/// Checks to see if the entity should be attacked. If it should be attacked, it will add the entity
|
||||
/// To a list of entities to attack every few ticks.
|
||||
/// </summary>
|
||||
/// <param name="entity">The entity to handle</param>
|
||||
/// <returns>If the entity should be attacked</returns>
|
||||
public bool handleEntity(Entity entity)
|
||||
{
|
||||
if (!entity.IsHostile())
|
||||
return;
|
||||
return false;
|
||||
|
||||
bool isBeingAttacked = entitiesToAttack.ContainsKey(entity.ID);
|
||||
if (GetCurrentLocation().Distance(entity.Location) < attackRange)
|
||||
|
|
@ -111,6 +123,8 @@ namespace MinecraftClient.ChatBots
|
|||
{
|
||||
entitiesToAttack.Add(entity.ID, entity);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -119,6 +133,8 @@ namespace MinecraftClient.ChatBots
|
|||
{
|
||||
entitiesToAttack.Remove(entity.ID);
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue