From e3ec9ac56f48fff052f7249b088758e20fcb621e Mon Sep 17 00:00:00 2001 From: FatBoy-DOTC Date: Thu, 13 Mar 2025 21:39:36 -0500 Subject: [PATCH] hellgates maybe? round 7 --- src/engine/gameManager/HellgateManager.java | 21 +++++++++++++-------- src/engine/objects/Mob.java | 1 + 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/src/engine/gameManager/HellgateManager.java b/src/engine/gameManager/HellgateManager.java index 13e14e8f..e0b24133 100644 --- a/src/engine/gameManager/HellgateManager.java +++ b/src/engine/gameManager/HellgateManager.java @@ -20,13 +20,17 @@ public class HellgateManager { public static void Reset(Hellgate hellgate){ for(Mob mob : hellgate.mobs){ mob.respawn(); + mob.destination = mob.bindLoc; + mob.setLoc(mob.bindLoc); LootManager.GenerateStrongholdLoot(mob,false,false); } for(Mob mob : hellgate.mini_bosses){ mob.respawn(); + mob.setLoc(mob.bindLoc); LootManager.GenerateStrongholdLoot(mob,true,false); } hellgate.boss.respawn(); + hellgate.boss.setLoc(hellgate.boss.bindLoc); LootManager.GenerateStrongholdLoot(hellgate.boss,false,true); } @@ -158,13 +162,13 @@ public class HellgateManager { //handle MobAI controller for(Hellgate hellgate : HellgateManager.hellgates){ - for(Mob mob : hellgate.mobs){ - MobAI.DetermineAction(mob); - } - for(Mob mob : hellgate.mini_bosses){ - MobAI.DetermineAction(mob); - } - MobAI.DetermineAction(hellgate.boss); + //for(Mob mob : hellgate.mobs){ + // MobAI.DetermineAction(mob); + //} + //for(Mob mob : hellgate.mini_bosses){ + // MobAI.DetermineAction(mob); + //} + //MobAI.DetermineAction(hellgate.boss); //check if boss has been defeated if(!hellgate.boss.isAlive() && hellgate.completionTime == 0L){ @@ -181,7 +185,8 @@ public class HellgateManager { } //reset hellgate on 15 minute intervals - if(!hellgate.boss.isAlive() && hellgate.completionTime != 0L && hellgate.completionTime + MBServerStatics.FIFTEEN_MINUTES < System.currentTimeMillis()){ + //if(!hellgate.boss.isAlive() && hellgate.completionTime != 0L && hellgate.completionTime + MBServerStatics.FIFTEEN_MINUTES < System.currentTimeMillis()){ + if(!hellgate.boss.isAlive() && hellgate.completionTime != 0L && hellgate.completionTime + 5000 < System.currentTimeMillis()){ Reset(hellgate); ChatSystemMsg chatMsg = new ChatSystemMsg(null, "Citadel Ruins Hellgate Has Begun!"); chatMsg.setMessageType(10); diff --git a/src/engine/objects/Mob.java b/src/engine/objects/Mob.java index 67bc9487..40731e1b 100644 --- a/src/engine/objects/Mob.java +++ b/src/engine/objects/Mob.java @@ -129,6 +129,7 @@ public class Mob extends AbstractIntelligenceAgent { this.parentZone = parent; this.parentZoneID = (parent != null) ? parent.getObjectUUID() : 0; this.building = building; + this.bonuses = new PlayerBonuses(this); if (building != null) this.buildingID = building.getObjectUUID();