Browse Source

mob aggro issues

lakebane
FatBoy-DOTC 4 weeks ago
parent
commit
d3fc4f2263
  1. 39
      src/engine/mobileAI/MobAI.java

39
src/engine/mobileAI/MobAI.java

@ -52,18 +52,18 @@ public class MobAI {
} }
//mob casting disabled //mob casting disabled
//if (target.getObjectType() == Enum.GameObjectType.PlayerCharacter && canCast(mob)) { if (target.getObjectType() == Enum.GameObjectType.PlayerCharacter && canCast(mob)) {
//if (mob.isPlayerGuard() == false && MobCast(mob)) { if (mob.isPlayerGuard() == false && MobCast(mob)) {
// mob.updateLocation(); mob.updateLocation();
// return; return;
//} }
//if (mob.isPlayerGuard() == true && GuardCast(mob)) { if (mob.isPlayerGuard() == true && GuardCast(mob)) {
// mob.updateLocation(); mob.updateLocation();
// return; return;
//} }
//} }
if (!CombatUtilities.inRangeToAttack(mob, target)) if (!CombatUtilities.inRangeToAttack(mob, target))
return; return;
@ -339,12 +339,14 @@ public class MobAI {
if (mob == null) if (mob == null)
return false; return false;
if (mob.nextCastTime == 0) if (mob.mobPowers == null || mob.mobPowers.isEmpty())
mob.nextCastTime = System.currentTimeMillis() - 1000L; return false;
if(mob.nextCastTime > System.currentTimeMillis()) if(mob.nextCastTime > System.currentTimeMillis())
return false; return false;
mob.nextCastTime = System.currentTimeMillis() + 30000L;
if(mob.isPlayerGuard){ if(mob.isPlayerGuard){
int contractID = 0; int contractID = 0;
@ -358,15 +360,12 @@ public class MobAI {
return false; return false;
} }
if (mob.mobPowers == null || mob.mobPowers.isEmpty())
return false;
if (!mob.canSee((PlayerCharacter) mob.getCombatTarget())) { if (!mob.canSee((PlayerCharacter) mob.getCombatTarget())) {
mob.setCombatTarget(null); mob.setCombatTarget(null);
return false; return false;
} }
return mob.nextCastTime <= System.currentTimeMillis(); return true;
} catch (Exception e) { } catch (Exception e) {
////(mob.getObjectUUID() + " " + mob.getName() + " Failed At: canCast" + " " + e.getMessage()); ////(mob.getObjectUUID() + " " + mob.getName() + " Failed At: canCast" + " " + e.getMessage());
@ -447,11 +446,11 @@ public class MobAI {
} }
msg.setUnknown04(2); msg.setUnknown04(2);
try {
PowersManager.finishUseMobPower(msg, mob, 0, 0); PowersManager.finishUseMobPower(msg, mob, 0, 0);
long delay = 20000L; }catch(Exception e) {
mob.nextCastTime = System.currentTimeMillis() + delay; return false;
}
return true; return true;
} }
} catch (Exception e) { } catch (Exception e) {

Loading…
Cancel
Save