Compare commits
139 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| aad305a499 | |||
| 88ce07df13 | |||
| 251210d166 | |||
| 5841db2a0d | |||
| 6127bbadb4 | |||
| 8e5584f413 | |||
| d5e69446c7 | |||
| b3247160d7 | |||
| 06e31c1243 | |||
| ac5528382c | |||
| 9d8467613a | |||
| 8ff0594333 | |||
| 2e7707fcbe | |||
| 78131ed6f2 | |||
| 9b2a1a271e | |||
| 846d720c2f | |||
| 9ba2f375cf | |||
| 22c975d251 | |||
| 601687133f | |||
| 2c47f593f3 | |||
| 6d004d631c | |||
| 2b4a87777c | |||
| b795db7fbd | |||
| af684c6968 | |||
| 80b1ab709d | |||
| 140ba6ae75 | |||
| c24d779d08 | |||
| 5f169fcfae | |||
| a5e0396dc6 | |||
| c5b2db051b | |||
| b94f8e4b03 | |||
| dbfc33563c | |||
| 57e7c3285f | |||
| c01d47fe21 | |||
| d5eb423db8 | |||
| 69113ee3c4 | |||
| c1aa6e2434 | |||
| 7820743222 | |||
| e6762ef9b5 | |||
| 81b60cd269 | |||
| 755d89ebe0 | |||
| aab28cd68c | |||
| 97b2af52b9 | |||
| 16a0b9c0e3 | |||
| bfd89036b2 | |||
| 9cad140836 | |||
| a9ca96bf96 | |||
| 1ef18490b5 | |||
| 8d739c3dae | |||
| 44f5fb02a3 | |||
| 240198eec6 | |||
| dfe300ba4b | |||
| b48d294eca | |||
| be27262e47 | |||
| d1d51ef791 | |||
| e380c4dddb | |||
| f9a7b91868 | |||
| cb73a81e33 | |||
| 47f1aa8a89 | |||
| ca0738b6ed | |||
| 5fabd31495 | |||
| e90465ee8f | |||
| 1b1c636628 | |||
| 5f28d3ae10 | |||
| d0e93773ad | |||
| 2160719126 | |||
| 0449465af9 | |||
| 891e350362 | |||
| 942c37442e | |||
| 0571d5ded3 | |||
| 1f63df4f08 | |||
| eec07f3a28 | |||
| a199014a98 | |||
| 48f8cf32b7 | |||
| f28b15b95e | |||
| 8e5aec841d | |||
| 9b7bcdc043 | |||
| 2dbaac5bcf | |||
| 2f201151df | |||
| 3d48951184 | |||
| 3d199a9362 | |||
| c8a95cab41 | |||
| 43631af53b | |||
| 89e31fd159 | |||
| ffecdbb06b | |||
| 7331c870c2 | |||
| 4b760baae4 | |||
| 8106b100ec | |||
| 53285ca898 | |||
| 9db7411ee6 | |||
| a12687913e | |||
| 937656a91d | |||
| 5f2034a35b | |||
| 87d39ae29d | |||
| bd95a8d7af | |||
| 1fa9a88ae3 | |||
| 34e3ae20d7 | |||
| 55b6d60141 | |||
| 92d0aec77d | |||
| 1282f58a3c | |||
| 1070d61251 | |||
| f7ab5347ab | |||
| 517e64d613 | |||
| 5ed31c5e2e | |||
| c50bcb0a32 | |||
| 09a6e18d4f | |||
| b0dd7e9b59 | |||
| 92d685c3e3 | |||
| 84a1db1e09 | |||
| d0e3cac4c3 | |||
| 9a5fd53271 | |||
| 8d4fb261b5 | |||
| 4a7a999ed1 | |||
| e69c0f2799 | |||
| 9e36d558bf | |||
| df2271fe2c | |||
| 1f7d2a14bf | |||
| a99047aee8 | |||
| 5dc9e127bb | |||
| bb05bdd87c | |||
| 4c0b480aeb | |||
| 3cf38da567 | |||
| 96731bd9bb | |||
| 9d79afa395 | |||
| 944290f958 | |||
| e6eb753666 | |||
| 4ad7e0f021 | |||
| 8d587538e0 | |||
| 4ae64ab94c | |||
| c5e6205801 | |||
| 5a3f4e690f | |||
| 048474b014 | |||
| 24e01acff4 | |||
| a75670bf0e | |||
| d56d58492a | |||
| 7b33c1392a | |||
| 86c95f0eb5 | |||
| 6ed648d6d4 | |||
| c722450f65 |
@@ -0,0 +1,150 @@
|
|||||||
|
package engine.Dungeons;
|
||||||
|
|
||||||
|
import engine.Enum;
|
||||||
|
import engine.InterestManagement.WorldGrid;
|
||||||
|
import engine.gameManager.BuildingManager;
|
||||||
|
import engine.gameManager.PowersManager;
|
||||||
|
import engine.gameManager.ZoneManager;
|
||||||
|
import engine.math.Vector3fImmutable;
|
||||||
|
import engine.net.ByteBufferWriter;
|
||||||
|
import engine.objects.*;
|
||||||
|
import engine.powers.EffectsBase;
|
||||||
|
import engine.server.MBServerStatics;
|
||||||
|
import org.pmw.tinylog.Logger;
|
||||||
|
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashSet;
|
||||||
|
|
||||||
|
public class Dungeon {
|
||||||
|
|
||||||
|
public static int NoFlyEffectID = -1733819072;
|
||||||
|
public static int NoTeleportEffectID = -1971545187;
|
||||||
|
public static int NoSummonEffectID = 2122002462;
|
||||||
|
public ArrayList<PlayerCharacter> participants;
|
||||||
|
public int maxPerGuild;
|
||||||
|
public Vector3fImmutable entrance;
|
||||||
|
public ArrayList<Mob> dungeon_mobs;
|
||||||
|
public Long respawnTime = 0L;
|
||||||
|
|
||||||
|
public Dungeon(Vector3fImmutable entrance, int maxCount){
|
||||||
|
this.participants = new ArrayList<>();
|
||||||
|
this.entrance = entrance;
|
||||||
|
this.dungeon_mobs = new ArrayList<>();
|
||||||
|
this.maxPerGuild = maxCount;
|
||||||
|
}
|
||||||
|
public void applyDungeonEffects(PlayerCharacter player){
|
||||||
|
EffectsBase noFly = PowersManager.getEffectByToken(NoFlyEffectID);
|
||||||
|
EffectsBase noTele = PowersManager.getEffectByToken(NoTeleportEffectID);
|
||||||
|
EffectsBase noSum = PowersManager.getEffectByToken(NoSummonEffectID);
|
||||||
|
|
||||||
|
if(noFly != null)
|
||||||
|
player.addEffectNoTimer(noFly.getName(),noFly,40,true);
|
||||||
|
|
||||||
|
if(noTele != null)
|
||||||
|
player.addEffectNoTimer(noTele.getName(),noTele,40,true);
|
||||||
|
|
||||||
|
if(noSum != null)
|
||||||
|
player.addEffectNoTimer(noSum.getName(),noSum,40,true);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void removeDungeonEffects(PlayerCharacter player) {
|
||||||
|
EffectsBase noFly = PowersManager.getEffectByToken(NoFlyEffectID);
|
||||||
|
EffectsBase noTele = PowersManager.getEffectByToken(NoTeleportEffectID);
|
||||||
|
EffectsBase noSum = PowersManager.getEffectByToken(NoSummonEffectID);
|
||||||
|
for (Effect eff : player.effects.values()) {
|
||||||
|
if (noFly != null && eff.getEffectsBase().equals(noFly))
|
||||||
|
eff.endEffect();
|
||||||
|
|
||||||
|
if (noTele != null && eff.getEffectsBase().equals(noTele))
|
||||||
|
eff.endEffect();
|
||||||
|
|
||||||
|
if (noSum != null && eff.getEffectsBase().equals(noSum))
|
||||||
|
eff.endEffect();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void serializeForClientMsgTeleport(ByteBufferWriter writer) {
|
||||||
|
Guild rulingGuild = Guild.getErrantGuild();
|
||||||
|
Guild rulingNation = Guild.getErrantGuild();
|
||||||
|
|
||||||
|
Zone zone = ZoneManager.getZoneByUUID(994);
|
||||||
|
// Begin Serialzing soverign guild data
|
||||||
|
writer.putInt(Enum.GameObjectType.Zone.ordinal());
|
||||||
|
writer.putInt(994);
|
||||||
|
writer.putString("Whitehorn Citadel");
|
||||||
|
writer.putInt(rulingGuild.getObjectType().ordinal());
|
||||||
|
writer.putInt(rulingGuild.getObjectUUID());
|
||||||
|
|
||||||
|
writer.putString("Whitehorn Militants"); // guild name
|
||||||
|
writer.putString("In the Citadel, We Fight!"); // motto
|
||||||
|
writer.putString(rulingGuild.getLeadershipType());
|
||||||
|
|
||||||
|
// Serialize guild ruler's name
|
||||||
|
// If tree is abandoned blank out the name
|
||||||
|
// to allow them a rename.
|
||||||
|
|
||||||
|
writer.putString("Kol'roth The Destroyer");//sovreign
|
||||||
|
|
||||||
|
writer.putInt(rulingGuild.getCharter());
|
||||||
|
writer.putInt(0); // always 00000000
|
||||||
|
|
||||||
|
writer.put((byte)1);//set safehold
|
||||||
|
|
||||||
|
writer.put((byte) 1);
|
||||||
|
writer.put((byte) 1); // *** Refactor: What are these flags?
|
||||||
|
writer.put((byte) 1);
|
||||||
|
writer.put((byte) 1);
|
||||||
|
writer.put((byte) 1);
|
||||||
|
|
||||||
|
GuildTag._serializeForDisplay(rulingGuild.getGuildTag(), writer);
|
||||||
|
GuildTag._serializeForDisplay(rulingNation.getGuildTag(), writer);
|
||||||
|
|
||||||
|
writer.putInt(0);// TODO Implement description text
|
||||||
|
|
||||||
|
writer.put((byte) 1);
|
||||||
|
writer.put((byte) 0);
|
||||||
|
writer.put((byte) 1);
|
||||||
|
|
||||||
|
// Begin serializing nation guild info
|
||||||
|
|
||||||
|
if (rulingNation.isEmptyGuild()) {
|
||||||
|
writer.putInt(rulingGuild.getObjectType().ordinal());
|
||||||
|
writer.putInt(rulingGuild.getObjectUUID());
|
||||||
|
} else {
|
||||||
|
writer.putInt(rulingNation.getObjectType().ordinal());
|
||||||
|
writer.putInt(rulingNation.getObjectUUID());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// Serialize nation name
|
||||||
|
|
||||||
|
writer.putString("Whitehorn Militants"); //nation name
|
||||||
|
|
||||||
|
writer.putInt(-1);//city rank, -1 puts it at top of list always
|
||||||
|
|
||||||
|
writer.putInt(0xFFFFFFFF);
|
||||||
|
|
||||||
|
writer.putInt(0);
|
||||||
|
|
||||||
|
writer.putString("Kol'roth The Destroyer");//nation ruler
|
||||||
|
|
||||||
|
writer.putLocalDateTime(LocalDateTime.now());
|
||||||
|
|
||||||
|
//location
|
||||||
|
Vector3fImmutable loc = Vector3fImmutable.getRandomPointOnCircle(BuildingManager.getBuilding(2827951).loc,30f);
|
||||||
|
|
||||||
|
writer.putFloat(loc.x);
|
||||||
|
writer.putFloat(loc.y);
|
||||||
|
writer.putFloat(loc.z);
|
||||||
|
|
||||||
|
writer.putInt(0);
|
||||||
|
|
||||||
|
writer.put((byte) 1);
|
||||||
|
writer.put((byte) 0);
|
||||||
|
writer.putInt(0x64);
|
||||||
|
writer.put((byte) 0);
|
||||||
|
writer.put((byte) 0);
|
||||||
|
writer.put((byte) 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,105 @@
|
|||||||
|
package engine.Dungeons;
|
||||||
|
|
||||||
|
import engine.Enum;
|
||||||
|
import engine.InterestManagement.WorldGrid;
|
||||||
|
import engine.gameManager.DbManager;
|
||||||
|
import engine.gameManager.ZoneManager;
|
||||||
|
import engine.math.Vector3fImmutable;
|
||||||
|
import engine.objects.*;
|
||||||
|
import engine.powers.EffectsBase;
|
||||||
|
import engine.server.MBServerStatics;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashSet;
|
||||||
|
|
||||||
|
public class DungeonManager {
|
||||||
|
public static ArrayList<Dungeon> dungeons;
|
||||||
|
|
||||||
|
private static final float dungeonAiRange = 64f;
|
||||||
|
private static final float maxTravel = 64f;
|
||||||
|
|
||||||
|
public static void joinDungeon(PlayerCharacter pc, Dungeon dungeon){
|
||||||
|
if(requestEnter(pc,dungeon)) {
|
||||||
|
dungeon.participants.add(pc);
|
||||||
|
dungeon.applyDungeonEffects(pc);
|
||||||
|
translocateToDungeon(pc, dungeon);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void leaveDungeon(PlayerCharacter pc, Dungeon dungeon){
|
||||||
|
dungeon.participants.remove(pc);
|
||||||
|
dungeon.removeDungeonEffects(pc);
|
||||||
|
translocateOutOfDungeon(pc);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean requestEnter(PlayerCharacter pc, Dungeon dungeon){
|
||||||
|
int current = 0;
|
||||||
|
Guild nation = pc.guild.getNation();
|
||||||
|
|
||||||
|
if(nation == null)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
for(PlayerCharacter participant : dungeon.participants){
|
||||||
|
if(participant.guild.getNation().equals(nation)){
|
||||||
|
current ++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(current >= dungeon.maxPerGuild)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void translocateToDungeon(PlayerCharacter pc, Dungeon dungeon){
|
||||||
|
pc.teleport(dungeon.entrance);
|
||||||
|
pc.setSafeMode();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void translocateOutOfDungeon(PlayerCharacter pc){
|
||||||
|
pc.teleport(pc.bindLoc);
|
||||||
|
pc.setSafeMode();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void pulse_dungeons(){
|
||||||
|
for(Dungeon dungeon : dungeons){
|
||||||
|
|
||||||
|
//early exit, if no players present don't waste resources
|
||||||
|
if(dungeon.participants.isEmpty())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(dungeon.respawnTime > 0 && System.currentTimeMillis() > dungeon.respawnTime){
|
||||||
|
respawnMobs(dungeon);
|
||||||
|
}
|
||||||
|
|
||||||
|
//remove any players that have left
|
||||||
|
HashSet<AbstractWorldObject> obj = WorldGrid.getObjectsInRangePartial(dungeon.entrance,4096f,MBServerStatics.MASK_PLAYER);
|
||||||
|
for(PlayerCharacter player : dungeon.participants)
|
||||||
|
if(!obj.contains(player))
|
||||||
|
leaveDungeon(player,dungeon);
|
||||||
|
|
||||||
|
//cycle dungeon mob AI
|
||||||
|
for(Mob mob : dungeon.dungeon_mobs)
|
||||||
|
dungeonMobAI(mob);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void dungeonMobAI(Mob mob){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void respawnMobs(Dungeon dungeon){
|
||||||
|
for(Mob mob : dungeon.dungeon_mobs){
|
||||||
|
|
||||||
|
if(!mob.isAlive() && mob.despawned)
|
||||||
|
mob.respawn();
|
||||||
|
|
||||||
|
if(!mob.isAlive() && !mob.despawned){
|
||||||
|
mob.despawn();
|
||||||
|
mob.respawn();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -150,7 +150,8 @@ public class Enum {
|
|||||||
NEPHFEMALE(2026, MonsterType.Nephilim, RunSpeed.STANDARD, CharacterSex.FEMALE, 1.1f),
|
NEPHFEMALE(2026, MonsterType.Nephilim, RunSpeed.STANDARD, CharacterSex.FEMALE, 1.1f),
|
||||||
HALFGIANTFEMALE(2027, MonsterType.HalfGiant, RunSpeed.STANDARD, CharacterSex.FEMALE, 1.15f),
|
HALFGIANTFEMALE(2027, MonsterType.HalfGiant, RunSpeed.STANDARD, CharacterSex.FEMALE, 1.15f),
|
||||||
VAMPMALE(2028, MonsterType.Vampire, RunSpeed.STANDARD, CharacterSex.MALE, 1),
|
VAMPMALE(2028, MonsterType.Vampire, RunSpeed.STANDARD, CharacterSex.MALE, 1),
|
||||||
VAMPFEMALE(2029, MonsterType.Vampire, RunSpeed.STANDARD, CharacterSex.FEMALE, 1);
|
VAMPFEMALE(2029, MonsterType.Vampire, RunSpeed.STANDARD, CharacterSex.FEMALE, 1),
|
||||||
|
SAETOR(1999,MonsterType.Minotaur, RunSpeed.MINOTAUR, CharacterSex.MALE,1);
|
||||||
|
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
private static HashMap<Integer, RaceType> _raceTypeByID = new HashMap<>();
|
private static HashMap<Integer, RaceType> _raceTypeByID = new HashMap<>();
|
||||||
@@ -170,8 +171,6 @@ public class Enum {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static RaceType getRaceTypebyRuneID(int runeID) {
|
public static RaceType getRaceTypebyRuneID(int runeID) {
|
||||||
if(runeID == 1999)
|
|
||||||
return _raceTypeByID.get(2017);
|
|
||||||
return _raceTypeByID.get(runeID);
|
return _raceTypeByID.get(runeID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -511,6 +511,18 @@ public enum InterestManager implements Runnable {
|
|||||||
if (player == null)
|
if (player == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
for(PlayerCharacter pc : SessionManager.getAllActivePlayerCharacters()){
|
||||||
|
if(pc.equals(player)){
|
||||||
|
try{
|
||||||
|
WorldGrid.RemoveWorldObject(player);
|
||||||
|
}catch(Exception e){
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
ClientConnection origin = player.getClientConnection();
|
ClientConnection origin = player.getClientConnection();
|
||||||
|
|
||||||
if (origin == null)
|
if (origin == null)
|
||||||
|
|||||||
@@ -0,0 +1,116 @@
|
|||||||
|
package engine.ZergMehcanics;
|
||||||
|
|
||||||
|
import engine.InterestManagement.WorldGrid;
|
||||||
|
import engine.gameManager.BuildingManager;
|
||||||
|
import engine.gameManager.ZergManager;
|
||||||
|
import engine.objects.*;
|
||||||
|
import engine.server.MBServerStatics;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.HashSet;
|
||||||
|
|
||||||
|
public class MineAntiZerg {
|
||||||
|
|
||||||
|
public static HashMap<Mine,HashMap<PlayerCharacter,Long>> leaveTimers = new HashMap<>();
|
||||||
|
public static HashMap<Mine,ArrayList<PlayerCharacter>> currentPlayers = new HashMap<>();
|
||||||
|
|
||||||
|
public static void runMines(){
|
||||||
|
for(Mine mine : Mine.getMines()){
|
||||||
|
|
||||||
|
Building tower = BuildingManager.getBuildingFromCache(mine.getBuildingID());
|
||||||
|
|
||||||
|
if(tower == null)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(!mine.isActive)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
logPlayersPresent(tower,mine);
|
||||||
|
|
||||||
|
auditPlayersPresent(tower,mine);
|
||||||
|
|
||||||
|
auditPlayers(mine);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void logPlayersPresent(Building tower, Mine mine){
|
||||||
|
HashSet<AbstractWorldObject> loadedPlayers = WorldGrid.getObjectsInRangePartial(tower.loc, MBServerStatics.CHARACTER_LOAD_RANGE * 3,MBServerStatics.MASK_PLAYER);
|
||||||
|
|
||||||
|
ArrayList<PlayerCharacter> playersPresent = new ArrayList<>();
|
||||||
|
for(AbstractWorldObject player : loadedPlayers){
|
||||||
|
playersPresent.add((PlayerCharacter)player);
|
||||||
|
}
|
||||||
|
|
||||||
|
currentPlayers.put(mine,playersPresent);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void auditPlayersPresent(Building tower, Mine mine){
|
||||||
|
HashSet<AbstractWorldObject> loadedPlayers = WorldGrid.getObjectsInRangePartial(tower.loc, MBServerStatics.CHARACTER_LOAD_RANGE * 3,MBServerStatics.MASK_PLAYER);
|
||||||
|
|
||||||
|
ArrayList<PlayerCharacter> toRemove = new ArrayList<>();
|
||||||
|
|
||||||
|
for(PlayerCharacter player : currentPlayers.get(mine)){
|
||||||
|
if(!loadedPlayers.contains(player)){
|
||||||
|
toRemove.add(player);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
currentPlayers.get(mine).removeAll(toRemove);
|
||||||
|
|
||||||
|
for(PlayerCharacter player : toRemove){
|
||||||
|
if(leaveTimers.containsKey(mine)){
|
||||||
|
leaveTimers.get(mine).put(player,System.currentTimeMillis());
|
||||||
|
}else{
|
||||||
|
HashMap<PlayerCharacter,Long> leaveTime = new HashMap<>();
|
||||||
|
leaveTime.put(player,System.currentTimeMillis());
|
||||||
|
leaveTimers.put(mine,leaveTime);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
toRemove.clear();
|
||||||
|
|
||||||
|
for(PlayerCharacter player : leaveTimers.get(mine).keySet()){
|
||||||
|
long timeGone = System.currentTimeMillis() - leaveTimers.get(mine).get(player);
|
||||||
|
if(timeGone > 180000L) {//3 minutes
|
||||||
|
toRemove.add(player);
|
||||||
|
player.ZergMultiplier = 1.0f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for(PlayerCharacter player : toRemove) {
|
||||||
|
leaveTimers.get(mine).remove(player);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void auditPlayers(Mine mine){
|
||||||
|
|
||||||
|
HashMap<Guild,ArrayList<PlayerCharacter>> playersByNation = new HashMap<>();
|
||||||
|
|
||||||
|
for(PlayerCharacter player : currentPlayers.get(mine)){
|
||||||
|
if(playersByNation.containsKey(player.guild.getNation())){
|
||||||
|
playersByNation.get(player.guild.getNation()).add(player);
|
||||||
|
}else{
|
||||||
|
ArrayList<PlayerCharacter> players = new ArrayList<>();
|
||||||
|
players.add(player);
|
||||||
|
playersByNation.put(player.guild.getNation(),players);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for(PlayerCharacter player : leaveTimers.get(mine).keySet()){
|
||||||
|
if(playersByNation.containsKey(player.guild.getNation())){
|
||||||
|
playersByNation.get(player.guild.getNation()).add(player);
|
||||||
|
}else{
|
||||||
|
ArrayList<PlayerCharacter> players = new ArrayList<>();
|
||||||
|
players.add(player);
|
||||||
|
playersByNation.put(player.guild.getNation(),players);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for(Guild nation : playersByNation.keySet()){
|
||||||
|
for(PlayerCharacter player : playersByNation.get(nation)){
|
||||||
|
player.ZergMultiplier = ZergManager.getCurrentMultiplier(playersByNation.get(nation).size(), mine.capSize);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -13,14 +13,13 @@ import engine.Enum;
|
|||||||
import engine.Enum.GameObjectType;
|
import engine.Enum.GameObjectType;
|
||||||
import engine.gameManager.ConfigManager;
|
import engine.gameManager.ConfigManager;
|
||||||
import engine.gameManager.DbManager;
|
import engine.gameManager.DbManager;
|
||||||
|
import engine.net.DispatchMessage;
|
||||||
|
import engine.net.client.msg.chat.ChatSystemMsg;
|
||||||
import engine.objects.Account;
|
import engine.objects.Account;
|
||||||
import engine.objects.PlayerCharacter;
|
import engine.objects.PlayerCharacter;
|
||||||
import org.pmw.tinylog.Logger;
|
import org.pmw.tinylog.Logger;
|
||||||
|
|
||||||
import java.sql.Connection;
|
import java.sql.*;
|
||||||
import java.sql.PreparedStatement;
|
|
||||||
import java.sql.ResultSet;
|
|
||||||
import java.sql.SQLException;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
|
||||||
public class dbAccountHandler extends dbHandlerBase {
|
public class dbAccountHandler extends dbHandlerBase {
|
||||||
@@ -77,18 +76,24 @@ public class dbAccountHandler extends dbHandlerBase {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void SET_TRASH(String machineID) {
|
public void SET_TRASH(String machineID, String type) {
|
||||||
|
|
||||||
try (Connection connection = DbManager.getConnection();
|
try (Connection connection = DbManager.getConnection();
|
||||||
PreparedStatement preparedStatement = connection.prepareStatement("INSERT INTO dyn_trash(`machineID`, `count`)"
|
PreparedStatement preparedStatement = connection.prepareStatement(
|
||||||
+ " VALUES (?, 1) ON DUPLICATE KEY UPDATE `count` = `count` + 1;")) {
|
"INSERT INTO dyn_trash(`machineID`, `count`, `type`)"
|
||||||
|
+ " VALUES (?, 1, ?) ON DUPLICATE KEY UPDATE `count` = `count` + 1;")) {
|
||||||
|
|
||||||
preparedStatement.setString(1, machineID);
|
preparedStatement.setString(1, machineID);
|
||||||
|
preparedStatement.setString(2, type);
|
||||||
preparedStatement.execute();
|
preparedStatement.execute();
|
||||||
|
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
Logger.error(e);
|
Logger.error(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ChatSystemMsg chatMsg = new ChatSystemMsg(null, "Account: " + machineID + " has been kicked from game for cheating");
|
||||||
|
chatMsg.setMessageType(10);
|
||||||
|
chatMsg.setChannel(Enum.ChatChannelType.SYSTEM.getChannelID());
|
||||||
|
DispatchMessage.dispatchMsgToAll(chatMsg);
|
||||||
}
|
}
|
||||||
|
|
||||||
public ArrayList<String> GET_TRASH_LIST() {
|
public ArrayList<String> GET_TRASH_LIST() {
|
||||||
@@ -270,4 +275,21 @@ public class dbAccountHandler extends dbHandlerBase {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void TRASH_CHEATERS() {
|
||||||
|
try (Connection connection = DbManager.getConnection();
|
||||||
|
CallableStatement callableStatement = connection.prepareCall("{CALL BanAccountsWithMachineID()}")) {
|
||||||
|
|
||||||
|
boolean hasResultSet = callableStatement.execute();
|
||||||
|
|
||||||
|
if (!hasResultSet && callableStatement.getUpdateCount() > 0) {
|
||||||
|
Logger.info("TRASHED CHEATERS");
|
||||||
|
} else {
|
||||||
|
Logger.warn("No cheaters to trash.");
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (SQLException e) {
|
||||||
|
Logger.error("Error trashing cheaters: ", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,54 @@
|
|||||||
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
||||||
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
||||||
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
||||||
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
||||||
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
||||||
|
// Magicbane Emulator Project © 2013 - 2022
|
||||||
|
// www.magicbane.com
|
||||||
|
|
||||||
|
|
||||||
|
package engine.devcmd.cmds;
|
||||||
|
|
||||||
|
import engine.Dungeons.DungeonManager;
|
||||||
|
import engine.Enum.GameObjectType;
|
||||||
|
import engine.devcmd.AbstractDevCmd;
|
||||||
|
import engine.gameManager.BuildingManager;
|
||||||
|
import engine.gameManager.ChatManager;
|
||||||
|
import engine.gameManager.DbManager;
|
||||||
|
import engine.gameManager.ZoneManager;
|
||||||
|
import engine.math.Vector3fImmutable;
|
||||||
|
import engine.objects.*;
|
||||||
|
import org.pmw.tinylog.Logger;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author Eighty
|
||||||
|
*/
|
||||||
|
public class DungenonCmd extends AbstractDevCmd {
|
||||||
|
|
||||||
|
public DungenonCmd() {
|
||||||
|
super("dungeon");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void _doCmd(PlayerCharacter pc, String[] words,
|
||||||
|
AbstractGameObject target) {
|
||||||
|
|
||||||
|
Zone parent = ZoneManager.findSmallestZone(pc.loc);
|
||||||
|
if(parent == null)
|
||||||
|
return;
|
||||||
|
|
||||||
|
Vector3fImmutable loc = Vector3fImmutable.getRandomPointOnCircle(BuildingManager.getBuilding(2827951).loc,30f);
|
||||||
|
pc.teleport(loc);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected String _getHelpString() {
|
||||||
|
return "indicate mob or building followed by an id and a level";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected String _getUsageString() {
|
||||||
|
return "'/dungeon mob 2001 10'";
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -335,15 +335,18 @@ public class InfoCmd extends AbstractDevCmd {
|
|||||||
output += "Movement State: " + targetPC.getMovementState().name();
|
output += "Movement State: " + targetPC.getMovementState().name();
|
||||||
output += newline;
|
output += newline;
|
||||||
output += "Movement Speed: " + targetPC.getSpeed();
|
output += "Movement Speed: " + targetPC.getSpeed();
|
||||||
|
output += newline;
|
||||||
output += "Altitude : " + targetPC.getLoc().y;
|
output += "Altitude : " + targetPC.getLoc().y;
|
||||||
|
output += newline;
|
||||||
output += "Swimming : " + targetPC.isSwimming();
|
output += "Swimming : " + targetPC.isSwimming();
|
||||||
output += newline;
|
output += newline;
|
||||||
output += "isMoving : " + targetPC.isMoving();
|
output += "isMoving : " + targetPC.isMoving();
|
||||||
output += newline;
|
output += newline;
|
||||||
output += "Zerg Multiplier : " + targetPC.ZergMultiplier+ newline;
|
output += "Zerg Multiplier : " + targetPC.ZergMultiplier + newline;
|
||||||
output += "Hidden : " + targetPC.getHidden();
|
output += "Hidden : " + targetPC.getHidden() + newline;
|
||||||
|
output += "Target Loc: " + targetPC.loc + newline;
|
||||||
|
output += "Player Loc: " + pc.loc + newline;
|
||||||
|
output += "Distance Squared: " + pc.loc.distanceSquared(targetPC.loc);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case NPC:
|
case NPC:
|
||||||
|
|||||||
@@ -11,6 +11,7 @@ package engine.devcmd.cmds;
|
|||||||
|
|
||||||
import engine.Enum;
|
import engine.Enum;
|
||||||
import engine.devcmd.AbstractDevCmd;
|
import engine.devcmd.AbstractDevCmd;
|
||||||
|
import engine.gameManager.PowersManager;
|
||||||
import engine.objects.*;
|
import engine.objects.*;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
@@ -86,6 +87,12 @@ public class PrintStatsCmd extends AbstractDevCmd {
|
|||||||
newOut += "MAX: " + tar.combatStats.maxDamageHandTwo + newline;
|
newOut += "MAX: " + tar.combatStats.maxDamageHandTwo + newline;
|
||||||
newOut += "RANGE: " + tar.combatStats.rangeHandTwo + newline;
|
newOut += "RANGE: " + tar.combatStats.rangeHandTwo + newline;
|
||||||
newOut += "ATTACK SPEED: " + tar.combatStats.attackSpeedHandTwo + newline;
|
newOut += "ATTACK SPEED: " + tar.combatStats.attackSpeedHandTwo + newline;
|
||||||
|
newOut += "=== POWERS ===" + newline;
|
||||||
|
for(CharacterPower power : pc.getPowers().values()){
|
||||||
|
if(power.getPower().requiresHitRoll) {
|
||||||
|
newOut += power.getPower().name + " ATR: " + Math.round(PlayerCombatStats.getSpellAtr(pc,power.getPower())) + newline;
|
||||||
|
}
|
||||||
|
}
|
||||||
throwbackInfo(pc, newOut);
|
throwbackInfo(pc, newOut);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ import engine.objects.*;
|
|||||||
import engine.server.MBServerStatics;
|
import engine.server.MBServerStatics;
|
||||||
import engine.server.world.WorldServer;
|
import engine.server.world.WorldServer;
|
||||||
import engine.session.Session;
|
import engine.session.Session;
|
||||||
|
import engine.util.KeyCloneAudit;
|
||||||
import org.pmw.tinylog.Logger;
|
import org.pmw.tinylog.Logger;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@@ -84,6 +85,10 @@ public enum ChatManager {
|
|||||||
if ((checkTime > 0L) && (curMsgTime - checkTime < FLOOD_TIME_THRESHOLD))
|
if ((checkTime > 0L) && (curMsgTime - checkTime < FLOOD_TIME_THRESHOLD))
|
||||||
isFlood = true;
|
isFlood = true;
|
||||||
|
|
||||||
|
if(KeyCloneAudit.auditChatMsg(pc,msg.getMessage())){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
switch (protocolMsg) {
|
switch (protocolMsg) {
|
||||||
case CHATSAY:
|
case CHATSAY:
|
||||||
ChatManager.chatSay(pc, msg.getMessage(), isFlood);
|
ChatManager.chatSay(pc, msg.getMessage(), isFlood);
|
||||||
|
|||||||
@@ -26,7 +26,6 @@ import engine.powers.effectmodifiers.WeaponProcEffectModifier;
|
|||||||
import engine.server.MBServerStatics;
|
import engine.server.MBServerStatics;
|
||||||
import org.pmw.tinylog.Logger;
|
import org.pmw.tinylog.Logger;
|
||||||
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
import java.util.concurrent.ThreadLocalRandom;
|
import java.util.concurrent.ThreadLocalRandom;
|
||||||
|
|
||||||
@@ -301,6 +300,20 @@ public enum CombatManager {
|
|||||||
if (target == null)
|
if (target == null)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
//pet to assist in attacking target
|
||||||
|
if(abstractCharacter.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
||||||
|
PlayerCharacter attacker = (PlayerCharacter)abstractCharacter;
|
||||||
|
if(attacker.combatStats == null){
|
||||||
|
attacker.combatStats = new PlayerCombatStats(attacker);
|
||||||
|
}
|
||||||
|
if(attacker.getPet() != null){
|
||||||
|
Mob pet = attacker.getPet();
|
||||||
|
if(pet.combatTarget == null && pet.assist)
|
||||||
|
pet.setCombatTarget(attacker.combatTarget);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
//target must be valid type
|
//target must be valid type
|
||||||
|
|
||||||
if (AbstractWorldObject.IsAbstractCharacter(target)) {
|
if (AbstractWorldObject.IsAbstractCharacter(target)) {
|
||||||
@@ -316,10 +329,13 @@ public enum CombatManager {
|
|||||||
else if (!tar.isActive())
|
else if (!tar.isActive())
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (target.getObjectType().equals(GameObjectType.PlayerCharacter) && abstractCharacter.getObjectType().equals(GameObjectType.PlayerCharacter) && abstractCharacter.getTimers().get("Attack" + slot) == null)
|
if (target.getObjectType().equals(GameObjectType.PlayerCharacter) && abstractCharacter.getObjectType().equals(GameObjectType.PlayerCharacter) && abstractCharacter.getTimers().get("Attack" + slot) == null) {
|
||||||
|
if(((PlayerCharacter)target).combatStats == null){
|
||||||
|
((PlayerCharacter)target).combatStats = new PlayerCombatStats(((PlayerCharacter)target));
|
||||||
|
}
|
||||||
if (!((PlayerCharacter) abstractCharacter).canSee((PlayerCharacter) target))
|
if (!((PlayerCharacter) abstractCharacter).canSee((PlayerCharacter) target))
|
||||||
return 0;
|
return 0;
|
||||||
|
}
|
||||||
//must not be immune to all or immune to attack
|
//must not be immune to all or immune to attack
|
||||||
|
|
||||||
Resists res = tar.getResists();
|
Resists res = tar.getResists();
|
||||||
@@ -452,6 +468,17 @@ public enum CombatManager {
|
|||||||
|
|
||||||
//Range check.
|
//Range check.
|
||||||
|
|
||||||
|
if(abstractCharacter.isMoving()){
|
||||||
|
range += (abstractCharacter.getSpeed() * 0.1f);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(AbstractWorldObject.IsAbstractCharacter(target)) {
|
||||||
|
AbstractCharacter tarAc = (AbstractCharacter) target;
|
||||||
|
if(tarAc != null && tarAc.isMoving()){
|
||||||
|
range += (tarAc.getSpeed() * 0.1f);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (NotInRange(abstractCharacter, target, range)) {
|
if (NotInRange(abstractCharacter, target, range)) {
|
||||||
|
|
||||||
//target is in stealth and can't be seen by source
|
//target is in stealth and can't be seen by source
|
||||||
@@ -544,8 +571,12 @@ public enum CombatManager {
|
|||||||
|
|
||||||
if (target == null)
|
if (target == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if(ac.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
if(ac.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
||||||
PlayerCharacter pc = (PlayerCharacter) ac;
|
PlayerCharacter pc = (PlayerCharacter) ac;
|
||||||
|
if( pc.combatStats == null){
|
||||||
|
pc.combatStats = new PlayerCombatStats(pc);
|
||||||
|
}
|
||||||
pc.combatStats.calculateATR(true);
|
pc.combatStats.calculateATR(true);
|
||||||
pc.combatStats.calculateATR(false);
|
pc.combatStats.calculateATR(false);
|
||||||
if (mainHand) {
|
if (mainHand) {
|
||||||
@@ -661,6 +692,9 @@ public enum CombatManager {
|
|||||||
} else {
|
} else {
|
||||||
AbstractCharacter tar = (AbstractCharacter) target;
|
AbstractCharacter tar = (AbstractCharacter) target;
|
||||||
if(tar.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
if(tar.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
||||||
|
if(((PlayerCharacter)tar).combatStats == null){
|
||||||
|
((PlayerCharacter)tar).combatStats = new PlayerCombatStats((PlayerCharacter)tar);
|
||||||
|
}
|
||||||
((PlayerCharacter)tar).combatStats.calculateDefense();
|
((PlayerCharacter)tar).combatStats.calculateDefense();
|
||||||
defense = ((PlayerCharacter)tar).combatStats.defense;
|
defense = ((PlayerCharacter)tar).combatStats.defense;
|
||||||
}else {
|
}else {
|
||||||
@@ -719,6 +753,18 @@ public enum CombatManager {
|
|||||||
|
|
||||||
PlayerBonuses bonus = ac.getBonuses();
|
PlayerBonuses bonus = ac.getBonuses();
|
||||||
float attackRange = getWeaponRange(wb, bonus);
|
float attackRange = getWeaponRange(wb, bonus);
|
||||||
|
|
||||||
|
if(ac.isMoving()){
|
||||||
|
attackRange += (ac.getSpeed() * 0.1f);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(AbstractWorldObject.IsAbstractCharacter(target)) {
|
||||||
|
//AbstractCharacter tarAc = (AbstractCharacter) target;
|
||||||
|
if(tarAc != null && tarAc.isMoving()){
|
||||||
|
attackRange += (tarAc.getSpeed() * 0.1f);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if(specialCaseHitRoll(dpj.getPowerToken())) {
|
if(specialCaseHitRoll(dpj.getPowerToken())) {
|
||||||
if(hitLanded) {
|
if(hitLanded) {
|
||||||
dpj.attack(target, attackRange);
|
dpj.attack(target, attackRange);
|
||||||
@@ -740,6 +786,18 @@ public enum CombatManager {
|
|||||||
|
|
||||||
if (dpj != null && dpj.getPower() != null && (dpj.getPowerToken() == -1851459567 || dpj.getPowerToken() == -1851489518)) {
|
if (dpj != null && dpj.getPower() != null && (dpj.getPowerToken() == -1851459567 || dpj.getPowerToken() == -1851489518)) {
|
||||||
float attackRange = getWeaponRange(wb, bonuses);
|
float attackRange = getWeaponRange(wb, bonuses);
|
||||||
|
|
||||||
|
if(ac.isMoving()){
|
||||||
|
attackRange += (ac.getSpeed() * 0.1f);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(AbstractWorldObject.IsAbstractCharacter(target)) {
|
||||||
|
//AbstractCharacter tarAc = (AbstractCharacter) target;
|
||||||
|
if(tarAc != null && tarAc.isMoving()){
|
||||||
|
attackRange += (tarAc.getSpeed() * 0.1f);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if(specialCaseHitRoll(dpj.getPowerToken())) {
|
if(specialCaseHitRoll(dpj.getPowerToken())) {
|
||||||
if(hitLanded) {
|
if(hitLanded) {
|
||||||
dpj.attack(target, attackRange);
|
dpj.attack(target, attackRange);
|
||||||
@@ -858,12 +916,12 @@ public enum CombatManager {
|
|||||||
for(Effect eff : weapon.effects.values()){
|
for(Effect eff : weapon.effects.values()){
|
||||||
for(AbstractEffectModifier mod : eff.getEffectModifiers()){
|
for(AbstractEffectModifier mod : eff.getEffectModifiers()){
|
||||||
if(mod.modType.equals(ModType.ArmorPiercing)){
|
if(mod.modType.equals(ModType.ArmorPiercing)){
|
||||||
armorPierce += mod.minMod * (mod.getRamp() * eff.getTrains());
|
armorPierce += mod.getPercentMod() + (mod.getRamp() * eff.getTrains());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(armorPierce > 0){
|
if(armorPierce > 0){
|
||||||
damage *= 1 - armorPierce;
|
damage *= 1 + (armorPierce * 0.01f);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -888,6 +946,8 @@ public enum CombatManager {
|
|||||||
if (tarAc.getHealth() > 0)
|
if (tarAc.getHealth() > 0)
|
||||||
d = tarAc.modifyHealth(-damage, ac, false);
|
d = tarAc.modifyHealth(-damage, ac, false);
|
||||||
|
|
||||||
|
tarAc.cancelOnTakeDamage();
|
||||||
|
|
||||||
} else if (target.getObjectType().equals(GameObjectType.Building)) {
|
} else if (target.getObjectType().equals(GameObjectType.Building)) {
|
||||||
|
|
||||||
if (BuildingManager.getBuildingFromCache(target.getObjectUUID()) == null) {
|
if (BuildingManager.getBuildingFromCache(target.getObjectUUID()) == null) {
|
||||||
@@ -946,6 +1006,16 @@ public enum CombatManager {
|
|||||||
if (ac.isAlive() && tarAc != null && tarAc.isAlive())
|
if (ac.isAlive() && tarAc != null && tarAc.isAlive())
|
||||||
handleDamageShields(ac, tarAc, damage);
|
handleDamageShields(ac, tarAc, damage);
|
||||||
|
|
||||||
|
//handle mob hate values
|
||||||
|
if(target.getObjectType().equals(GameObjectType.Mob) && ac.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
||||||
|
Mob mobTarget = (Mob)target;
|
||||||
|
if(mobTarget.hate_values.containsKey((PlayerCharacter) ac)){
|
||||||
|
mobTarget.hate_values.put((PlayerCharacter) ac,mobTarget.hate_values.get((PlayerCharacter) ac) + damage);
|
||||||
|
}else{
|
||||||
|
mobTarget.hate_values.put((PlayerCharacter) ac, damage);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
// Apply Weapon power effect if any.
|
// Apply Weapon power effect if any.
|
||||||
@@ -961,6 +1031,19 @@ public enum CombatManager {
|
|||||||
if (wp.requiresHitRoll() == false) {
|
if (wp.requiresHitRoll() == false) {
|
||||||
PlayerBonuses bonus = ac.getBonuses();
|
PlayerBonuses bonus = ac.getBonuses();
|
||||||
float attackRange = getWeaponRange(wb, bonus);
|
float attackRange = getWeaponRange(wb, bonus);
|
||||||
|
|
||||||
|
if(ac.isMoving()){
|
||||||
|
attackRange += (ac.getSpeed() * 0.1f);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(AbstractWorldObject.IsAbstractCharacter(target)) {
|
||||||
|
AbstractCharacter tarAc = (AbstractCharacter) target;
|
||||||
|
if(tarAc != null && tarAc.isMoving()){
|
||||||
|
attackRange += (tarAc.getSpeed() * 0.1f);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if(specialCaseHitRoll(dpj.getPowerToken())) {
|
if(specialCaseHitRoll(dpj.getPowerToken())) {
|
||||||
if(hitLanded) {
|
if(hitLanded) {
|
||||||
dpj.attack(target, attackRange);
|
dpj.attack(target, attackRange);
|
||||||
@@ -1016,6 +1099,12 @@ public enum CombatManager {
|
|||||||
Item tarMain = tarItem.getItemFromEquipped(1);
|
Item tarMain = tarItem.getItemFromEquipped(1);
|
||||||
Item tarOff = tarItem.getItemFromEquipped(2);
|
Item tarOff = tarItem.getItemFromEquipped(2);
|
||||||
|
|
||||||
|
if(target.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
||||||
|
PlayerCharacter pc = (PlayerCharacter) target;
|
||||||
|
if(pc.getRaceID() == 1999 && !isRanged(acMain) && !isRanged(acOff))
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
return !isRanged(acMain) && !isRanged(acOff) && !isRanged(tarMain) && !isRanged(tarOff);
|
return !isRanged(acMain) && !isRanged(acOff) && !isRanged(tarMain) && !isRanged(tarOff);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,430 @@
|
|||||||
|
package engine.gameManager;
|
||||||
|
|
||||||
|
import engine.Enum;
|
||||||
|
import engine.exception.MsgSendException;
|
||||||
|
import engine.job.JobContainer;
|
||||||
|
import engine.job.JobScheduler;
|
||||||
|
import engine.jobs.AttackJob;
|
||||||
|
import engine.jobs.DeferredPowerJob;
|
||||||
|
import engine.net.DispatchMessage;
|
||||||
|
import engine.net.client.ClientConnection;
|
||||||
|
import engine.net.client.msg.AttackCmdMsg;
|
||||||
|
import engine.net.client.msg.TargetedActionMsg;
|
||||||
|
import engine.objects.*;
|
||||||
|
import engine.powers.DamageShield;
|
||||||
|
import engine.powers.effectmodifiers.AbstractEffectModifier;
|
||||||
|
import engine.powers.effectmodifiers.WeaponProcEffectModifier;
|
||||||
|
import engine.server.MBServerStatics;
|
||||||
|
import org.pmw.tinylog.Logger;
|
||||||
|
|
||||||
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
import java.util.concurrent.ThreadLocalRandom;
|
||||||
|
|
||||||
|
public class CombatSystem {
|
||||||
|
|
||||||
|
public static void attemptCombat(AbstractCharacter source, AbstractWorldObject target, boolean mainhand){
|
||||||
|
|
||||||
|
//1. source or target doesn't exist, early exit
|
||||||
|
if(source == null || target == null)
|
||||||
|
return;
|
||||||
|
|
||||||
|
//2. source or target is dead, early exit
|
||||||
|
if(!source.isAlive() || !target.isAlive())
|
||||||
|
return;
|
||||||
|
|
||||||
|
//3. make sure if target is a building to ensure that it is damageable
|
||||||
|
if(target.getObjectType().equals(Enum.GameObjectType.Building)){
|
||||||
|
Building building = (Building)target;
|
||||||
|
if(building.assetIsProtected() || building.getProtectionState().equals(Enum.ProtectionState.NPC))
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//after thought: make sure target is in range of source
|
||||||
|
if(!inRange(source,target,mainhand))
|
||||||
|
return;
|
||||||
|
|
||||||
|
//4. apply any weapon powers and then clear the weapon power memory for the player
|
||||||
|
if (source.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)) {
|
||||||
|
PlayerCharacter pc = (PlayerCharacter)source;
|
||||||
|
if(pc.getWeaponPower() != null){
|
||||||
|
pc.getWeaponPower().attack(target,pc.getRange());
|
||||||
|
pc.setWeaponPower(null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//5. make sure if target is AbstractCharacter to check for defense trigger and passive trigger
|
||||||
|
if(AbstractCharacter.IsAbstractCharacter(target)) {
|
||||||
|
int atr;
|
||||||
|
int def;
|
||||||
|
if (source.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)) {
|
||||||
|
PlayerCharacter pc = (PlayerCharacter)source;
|
||||||
|
if(pc.combatStats == null)
|
||||||
|
pc.combatStats = new PlayerCombatStats(pc);
|
||||||
|
atr = (int) pc.combatStats.atrHandOne;
|
||||||
|
if(!mainhand)
|
||||||
|
atr =(int) pc.combatStats.atrHandTwo;
|
||||||
|
|
||||||
|
def = pc.combatStats.defense;
|
||||||
|
} else {
|
||||||
|
atr = (int) ((source.getAtrHandOne() + source.getAtrHandTwo()) * 0.5f);
|
||||||
|
def = source.defenseRating;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!LandHit(atr,def)) {
|
||||||
|
createTimer(source,mainhand);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(source.getBonuses() != null)
|
||||||
|
if(!source.getBonuses().getBool(Enum.ModType.IgnorePassiveDefense, Enum.SourceType.None))
|
||||||
|
if(triggerPassive(source,target)) {
|
||||||
|
createTimer(source,mainhand);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//commence actual combat management
|
||||||
|
|
||||||
|
//6. check for any procs
|
||||||
|
if (source.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)) {
|
||||||
|
PlayerCharacter pc = (PlayerCharacter)source;
|
||||||
|
if(pc.getCharItemManager() != null && pc.getCharItemManager().getEquipped() != null){
|
||||||
|
Item weapon = pc.getCharItemManager().getEquipped(1);
|
||||||
|
if(!mainhand)
|
||||||
|
weapon = pc.getCharItemManager().getEquipped(2);
|
||||||
|
if(weapon != null){
|
||||||
|
if(weapon.effects != null){
|
||||||
|
for (Effect eff : weapon.effects.values()){
|
||||||
|
for(AbstractEffectModifier mod : eff.getEffectModifiers()){
|
||||||
|
if(mod.modType.equals(Enum.ModType.WeaponProc)){
|
||||||
|
int procChance = ThreadLocalRandom.current().nextInt(0,101);
|
||||||
|
if (procChance <= MBServerStatics.PROC_CHANCE) {
|
||||||
|
try {
|
||||||
|
((WeaponProcEffectModifier) mod).applyProc(source, target);
|
||||||
|
}catch(Exception e){
|
||||||
|
Logger.error(eff.getName() + " Failed To Cast Proc");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//7. configure damage amounts and type
|
||||||
|
Enum.DamageType damageType = Enum.DamageType.Crush;
|
||||||
|
int min = 0;
|
||||||
|
int max = 0;
|
||||||
|
if (source.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)) {
|
||||||
|
PlayerCharacter pc = (PlayerCharacter) source;
|
||||||
|
if(mainhand){
|
||||||
|
min = pc.combatStats.minDamageHandOne;
|
||||||
|
max = pc.combatStats.maxDamageHandOne;
|
||||||
|
}else{
|
||||||
|
min = pc.combatStats.minDamageHandTwo;
|
||||||
|
max = pc.combatStats.maxDamageHandTwo;
|
||||||
|
}
|
||||||
|
}else if (source.getObjectType().equals(Enum.GameObjectType.Mob)) {
|
||||||
|
Mob mob = (Mob) source;
|
||||||
|
min = (int) mob.mobBase.getDamageMin();
|
||||||
|
max = (int) mob.mobBase.getDamageMax();
|
||||||
|
}
|
||||||
|
|
||||||
|
int damage = ThreadLocalRandom.current().nextInt(min,max + 1);
|
||||||
|
|
||||||
|
if(source.getBonuses() != null){
|
||||||
|
damage *= 1 + source.getBonuses().getFloatPercentAll(Enum.ModType.MeleeDamageModifier, Enum.SourceType.None);
|
||||||
|
}
|
||||||
|
if (source.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)) {
|
||||||
|
PlayerCharacter pc = (PlayerCharacter) source;
|
||||||
|
damage *= pc.ZergMultiplier;
|
||||||
|
}
|
||||||
|
|
||||||
|
//8. configure the attack message to be sent to the clients
|
||||||
|
int animation = 0;
|
||||||
|
ItemBase wb = null;
|
||||||
|
if(source.getCharItemManager() != null && source.getCharItemManager().getEquipped() != null) {
|
||||||
|
Item weapon = source.getCharItemManager().getEquipped(1);
|
||||||
|
if (!mainhand)
|
||||||
|
weapon = source.getCharItemManager().getEquipped(2);
|
||||||
|
|
||||||
|
if(weapon != null && weapon.getItemBase().getAnimations() != null && !weapon.getItemBase().getAnimations().isEmpty()){
|
||||||
|
animation = weapon.getItemBase().getAnimations().get(0);
|
||||||
|
wb = weapon.getItemBase();
|
||||||
|
damageType = wb.getDamageType();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//9. reduce damage from resists and apply damage shields
|
||||||
|
if(AbstractCharacter.IsAbstractCharacter(target)){
|
||||||
|
AbstractCharacter abs = (AbstractCharacter) target;
|
||||||
|
damage = (int) abs.getResists().getResistedDamage(source, abs,damageType,damage,1);
|
||||||
|
handleDamageShields(source,abs,damage);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
sendCombatMessage(source, target, 0f, wb, null, mainhand, animation);
|
||||||
|
|
||||||
|
//if attacker is player, set last attack timestamp
|
||||||
|
if (source.getObjectType().equals(Enum.GameObjectType.PlayerCharacter))
|
||||||
|
updateAttackTimers((PlayerCharacter) source, target);
|
||||||
|
|
||||||
|
//10. cancel all effects that cancel on attack
|
||||||
|
source.cancelOnAttack();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean LandHit(int ATR, int DEF){
|
||||||
|
|
||||||
|
int roll = ThreadLocalRandom.current().nextInt(101);
|
||||||
|
|
||||||
|
float chance = PlayerCombatStats.getHitChance(ATR,DEF);
|
||||||
|
return chance >= roll;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void sendCombatMessage(AbstractCharacter source, AbstractWorldObject target, float damage, ItemBase wb, DeferredPowerJob dpj, boolean mainHand, int swingAnimation) {
|
||||||
|
|
||||||
|
if (dpj != null)
|
||||||
|
if (PowersManager.AnimationOverrides.containsKey(dpj.getAction().getEffectID()))
|
||||||
|
swingAnimation = PowersManager.AnimationOverrides.get(dpj.getAction().getEffectID());
|
||||||
|
|
||||||
|
if (source.getObjectType() == Enum.GameObjectType.PlayerCharacter)
|
||||||
|
for (Effect eff : source.getEffects().values())
|
||||||
|
if (eff.getPower() != null && (eff.getPower().getToken() == 429506943 || eff.getPower().getToken() == 429408639 || eff.getPower().getToken() == 429513599 || eff.getPower().getToken() == 429415295))
|
||||||
|
swingAnimation = 0;
|
||||||
|
|
||||||
|
TargetedActionMsg cmm = new TargetedActionMsg(source, target, damage, swingAnimation);
|
||||||
|
DispatchMessage.sendToAllInRange(target, cmm);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void updateAttackTimers(PlayerCharacter pc, AbstractWorldObject target) {
|
||||||
|
|
||||||
|
//Set Attack Timers
|
||||||
|
|
||||||
|
if (target.getObjectType().equals(Enum.GameObjectType.PlayerCharacter))
|
||||||
|
pc.setLastPlayerAttackTime();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void handleDamageShields(AbstractCharacter ac, AbstractCharacter target, float damage) {
|
||||||
|
|
||||||
|
if (ac == null || target == null)
|
||||||
|
return;
|
||||||
|
|
||||||
|
PlayerBonuses bonuses = target.getBonuses();
|
||||||
|
|
||||||
|
if (bonuses != null) {
|
||||||
|
|
||||||
|
ConcurrentHashMap<AbstractEffectModifier, DamageShield> damageShields = bonuses.getDamageShields();
|
||||||
|
float total = 0;
|
||||||
|
|
||||||
|
for (DamageShield ds : damageShields.values()) {
|
||||||
|
|
||||||
|
//get amount to damage back
|
||||||
|
|
||||||
|
float amount;
|
||||||
|
|
||||||
|
if (ds.usePercent())
|
||||||
|
amount = damage * ds.getAmount() / 100;
|
||||||
|
else
|
||||||
|
amount = ds.getAmount();
|
||||||
|
|
||||||
|
//get resisted damage for damagetype
|
||||||
|
|
||||||
|
Resists resists = ac.getResists();
|
||||||
|
|
||||||
|
if (resists != null) {
|
||||||
|
amount = resists.getResistedDamage(target, ac, ds.getDamageType(), amount, 0);
|
||||||
|
}
|
||||||
|
total += amount;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (total > 0) {
|
||||||
|
|
||||||
|
//apply Damage back
|
||||||
|
|
||||||
|
ac.modifyHealth(-total, target, true);
|
||||||
|
|
||||||
|
TargetedActionMsg cmm = new TargetedActionMsg(ac, ac, total, 0);
|
||||||
|
DispatchMessage.sendToAllInRange(target, cmm);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean inRange(AbstractCharacter source, AbstractWorldObject target, boolean mainhand){
|
||||||
|
|
||||||
|
if(source == null || target == null)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
float distanceSquared = source.loc.distanceSquared(target.loc);
|
||||||
|
|
||||||
|
float rangeSquared = 16.0f;
|
||||||
|
|
||||||
|
if(source.getCharItemManager() != null && source.getCharItemManager().getEquipped() != null){
|
||||||
|
Item weapon = source.getCharItemManager().getEquipped(1);
|
||||||
|
if(!mainhand)
|
||||||
|
weapon = source.getCharItemManager().getEquipped(2);
|
||||||
|
if(weapon != null)
|
||||||
|
rangeSquared = weapon.getItemBase().getRange() * weapon.getItemBase().getRange();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(source.getBonuses() != null){
|
||||||
|
rangeSquared *= 1 + source.getBonuses().getFloatPercentAll(Enum.ModType.WeaponRange, Enum.SourceType.None);
|
||||||
|
}
|
||||||
|
|
||||||
|
return distanceSquared <= rangeSquared;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean triggerPassive(AbstractCharacter source, AbstractWorldObject target) {
|
||||||
|
boolean passiveFired = false;
|
||||||
|
|
||||||
|
if (!AbstractCharacter.IsAbstractCharacter(target))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
AbstractCharacter tarAc = (AbstractCharacter) target;
|
||||||
|
//Handle Block passive
|
||||||
|
if (testPassive(source, tarAc, "Block")) {
|
||||||
|
sendPassiveDefenseMessage(source, null, target, MBServerStatics.COMBAT_SEND_DODGE, null, true);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Handle Parry passive
|
||||||
|
if (testPassive(source, tarAc, "Parry")) {
|
||||||
|
sendPassiveDefenseMessage(source, null, target, MBServerStatics.COMBAT_SEND_DODGE, null, true);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Handle Dodge passive
|
||||||
|
if (testPassive(source, tarAc, "Dodge")) {
|
||||||
|
sendPassiveDefenseMessage(source, null, target, MBServerStatics.COMBAT_SEND_DODGE, null, true);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void sendPassiveDefenseMessage(AbstractCharacter source, ItemBase wb, AbstractWorldObject target, int passiveType, DeferredPowerJob dpj, boolean mainHand) {
|
||||||
|
|
||||||
|
int swingAnimation = 75;
|
||||||
|
|
||||||
|
if (dpj != null)
|
||||||
|
if (PowersManager.AnimationOverrides.containsKey(dpj.getAction().getEffectID()))
|
||||||
|
swingAnimation = PowersManager.AnimationOverrides.get(dpj.getAction().getEffectID());
|
||||||
|
|
||||||
|
TargetedActionMsg cmm = new TargetedActionMsg(source, swingAnimation, target, passiveType);
|
||||||
|
DispatchMessage.sendToAllInRange(target, cmm);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static boolean testPassive(AbstractCharacter source, AbstractCharacter target, String type) {
|
||||||
|
|
||||||
|
if(target.getBonuses() != null)
|
||||||
|
if(target.getBonuses().getBool(Enum.ModType.Stunned, Enum.SourceType.None))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
float chance = target.getPassiveChance(type, source.getLevel(), true);
|
||||||
|
|
||||||
|
if (chance == 0f)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
//max 75% chance of passive to fire
|
||||||
|
|
||||||
|
if (chance > 75f)
|
||||||
|
chance = 75f;
|
||||||
|
|
||||||
|
int roll = ThreadLocalRandom.current().nextInt(1,100);
|
||||||
|
|
||||||
|
return roll < chance;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void createTimer(AbstractCharacter source, boolean mainhand) {
|
||||||
|
|
||||||
|
ConcurrentHashMap<String, JobContainer> timers = source.getTimers();
|
||||||
|
int slot = 1;
|
||||||
|
if(!mainhand)
|
||||||
|
slot = 2;
|
||||||
|
|
||||||
|
int time = 3000;
|
||||||
|
if(source.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)){
|
||||||
|
PlayerCharacter pc = (PlayerCharacter)source;
|
||||||
|
if(mainhand){
|
||||||
|
time = (int) pc.combatStats.attackSpeedHandOne;
|
||||||
|
}else{
|
||||||
|
time = (int) pc.combatStats.attackSpeedHandTwo;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (timers != null) {
|
||||||
|
AttackJob aj = new AttackJob(source, slot, true);
|
||||||
|
JobContainer job;
|
||||||
|
job = JobScheduler.getInstance().scheduleJob(aj, (time * 100));
|
||||||
|
timers.put("Attack" + slot, job);
|
||||||
|
} else {
|
||||||
|
Logger.error("Unable to find Timers for Character " + source.getObjectUUID());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void setAttackTarget(AttackCmdMsg msg, ClientConnection origin) throws MsgSendException {
|
||||||
|
|
||||||
|
PlayerCharacter player;
|
||||||
|
int targetType;
|
||||||
|
AbstractWorldObject target;
|
||||||
|
|
||||||
|
if (TargetedActionMsg.un2cnt == 60 || TargetedActionMsg.un2cnt == 70)
|
||||||
|
return;
|
||||||
|
|
||||||
|
player = SessionManager.getPlayerCharacter(origin);
|
||||||
|
|
||||||
|
if (player == null)
|
||||||
|
return;
|
||||||
|
|
||||||
|
//source must match player this account belongs to
|
||||||
|
|
||||||
|
if (player.getObjectUUID() != msg.getSourceID() || player.getObjectType().ordinal() != msg.getSourceType()) {
|
||||||
|
Logger.error("Msg Source ID " + msg.getSourceID() + " Does not Match Player ID " + player.getObjectUUID());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
targetType = msg.getTargetType();
|
||||||
|
|
||||||
|
if (targetType == Enum.GameObjectType.PlayerCharacter.ordinal()) {
|
||||||
|
target = PlayerCharacter.getFromCache(msg.getTargetID());
|
||||||
|
} else if (targetType == Enum.GameObjectType.Building.ordinal()) {
|
||||||
|
target = BuildingManager.getBuildingFromCache(msg.getTargetID());
|
||||||
|
} else if (targetType == Enum.GameObjectType.Mob.ordinal()) {
|
||||||
|
target = Mob.getFromCache(msg.getTargetID());
|
||||||
|
} else {
|
||||||
|
player.setCombatTarget(null);
|
||||||
|
return; //not valid type to attack
|
||||||
|
}
|
||||||
|
|
||||||
|
// quit of the combat target is already the current combat target
|
||||||
|
// or there is no combat target
|
||||||
|
|
||||||
|
if (target == null)
|
||||||
|
return;
|
||||||
|
|
||||||
|
//set sources target
|
||||||
|
|
||||||
|
player.setCombatTarget(target);
|
||||||
|
|
||||||
|
boolean hasMain = false;
|
||||||
|
boolean hasOff = false;
|
||||||
|
if(player.getCharItemManager() != null && player.getCharItemManager().getEquipped() != null){
|
||||||
|
if(player.getCharItemManager().getEquipped(1) != null)
|
||||||
|
hasMain = true;
|
||||||
|
if(player.getCharItemManager().getEquipped(2) != null && !player.getCharItemManager().getEquipped(2).getItemBase().isShield())
|
||||||
|
hasOff = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(hasMain){
|
||||||
|
createTimer(player,true);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(hasOff){
|
||||||
|
createTimer(player,false);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -85,6 +85,7 @@ public enum DevCmdManager {
|
|||||||
DevCmdManager.registerDevCmd(new AddBuildingCmd());
|
DevCmdManager.registerDevCmd(new AddBuildingCmd());
|
||||||
DevCmdManager.registerDevCmd(new AddNPCCmd());
|
DevCmdManager.registerDevCmd(new AddNPCCmd());
|
||||||
DevCmdManager.registerDevCmd(new AddMobCmd());
|
DevCmdManager.registerDevCmd(new AddMobCmd());
|
||||||
|
DevCmdManager.registerDevCmd(new DungenonCmd());
|
||||||
DevCmdManager.registerDevCmd(new RemoveObjectCmd());
|
DevCmdManager.registerDevCmd(new RemoveObjectCmd());
|
||||||
DevCmdManager.registerDevCmd(new RotateCmd());
|
DevCmdManager.registerDevCmd(new RotateCmd());
|
||||||
DevCmdManager.registerDevCmd(new FlashMsgCmd());
|
DevCmdManager.registerDevCmd(new FlashMsgCmd());
|
||||||
@@ -207,7 +208,7 @@ public enum DevCmdManager {
|
|||||||
case "printskills":
|
case "printskills":
|
||||||
case "printpowers":
|
case "printpowers":
|
||||||
case "printbonuses":
|
case "printbonuses":
|
||||||
case "gimme":
|
//case "gimme":
|
||||||
playerAllowed = true;
|
playerAllowed = true;
|
||||||
if (!a.status.equals(Enum.AccountStatus.ADMIN))
|
if (!a.status.equals(Enum.AccountStatus.ADMIN))
|
||||||
target = pcSender;
|
target = pcSender;
|
||||||
|
|||||||
@@ -14,6 +14,7 @@ import engine.net.DispatchMessage;
|
|||||||
import engine.net.client.msg.ErrorPopupMsg;
|
import engine.net.client.msg.ErrorPopupMsg;
|
||||||
import engine.net.client.msg.chat.ChatSystemMsg;
|
import engine.net.client.msg.chat.ChatSystemMsg;
|
||||||
import engine.objects.*;
|
import engine.objects.*;
|
||||||
|
import engine.server.MBServerStatics;
|
||||||
import org.pmw.tinylog.Logger;
|
import org.pmw.tinylog.Logger;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@@ -42,6 +43,15 @@ public enum LootManager {
|
|||||||
public static final ArrayList<Integer> vorg_cloth_uuids = new ArrayList<>(Arrays.asList(27600,188700,188720,189550,189560));
|
public static final ArrayList<Integer> vorg_cloth_uuids = new ArrayList<>(Arrays.asList(27600,188700,188720,189550,189560));
|
||||||
public static final ArrayList<Integer> racial_guard_uuids = new ArrayList<>(Arrays.asList(841,951,952,1050,1052,1180,1182,1250,1252,1350,1352,1450,1452,1500,1502,1525,1527,1550,1552,1575,1577,1600,1602,1650,1652,1700,980100,980102));
|
public static final ArrayList<Integer> racial_guard_uuids = new ArrayList<>(Arrays.asList(841,951,952,1050,1052,1180,1182,1250,1252,1350,1352,1450,1452,1500,1502,1525,1527,1550,1552,1575,1577,1600,1602,1650,1652,1700,980100,980102));
|
||||||
|
|
||||||
|
public static final ArrayList<Integer> static_rune_ids = new ArrayList<>(Arrays.asList(
|
||||||
|
250001, 250002, 250003, 250004, 250005, 250006, 250007, 250008, 250010, 250011,
|
||||||
|
250012, 250013, 250014, 250015, 250016, 250017, 250019, 250020, 250021, 250022,
|
||||||
|
250023, 250024, 250025, 250026, 250028, 250029, 250030, 250031, 250032, 250033,
|
||||||
|
250034, 250035, 250037, 250038, 250039, 250040, 250041, 250042, 250043, 250044,
|
||||||
|
250115, 250118, 250119, 250120, 250121, 250122, 252123, 252124, 252125, 252126,
|
||||||
|
252127
|
||||||
|
));
|
||||||
|
|
||||||
// Drop Rates
|
// Drop Rates
|
||||||
|
|
||||||
public static float NORMAL_DROP_RATE;
|
public static float NORMAL_DROP_RATE;
|
||||||
@@ -258,33 +268,40 @@ public enum LootManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void SpecialCaseRuneDrop(Mob mob,ArrayList<BootySetEntry> entries){
|
public static void SpecialCaseRuneDrop(Mob mob,ArrayList<BootySetEntry> entries){
|
||||||
int lootTableID = 0;
|
//int lootTableID = 0;
|
||||||
for(BootySetEntry entry : entries){
|
//for(BootySetEntry entry : entries){
|
||||||
if(entry.bootyType.equals("LOOT")){
|
// if(entry.bootyType.equals("LOOT")){
|
||||||
lootTableID = entry.genTable;
|
// lootTableID = entry.genTable;
|
||||||
break;
|
// break;
|
||||||
}
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
|
// if(lootTableID == 0)
|
||||||
|
// return;
|
||||||
|
|
||||||
|
//int RuneTableID = 0;
|
||||||
|
//for(GenTableEntry entry : _genTables.get(lootTableID)){
|
||||||
|
// try {
|
||||||
|
// if (ItemBase.getItemBase(_itemTables.get(entry.itemTableID).get(0).cacheID).getType().equals(Enum.ItemType.RUNE)) {
|
||||||
|
// RuneTableID = entry.itemTableID;
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// }catch(Exception e){
|
||||||
|
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
|
//if(RuneTableID == 0)
|
||||||
|
// return;
|
||||||
|
|
||||||
|
int roll = ThreadLocalRandom.current().nextInt(static_rune_ids.size() + 1);
|
||||||
|
int itemId = static_rune_ids.get(0);
|
||||||
|
try {
|
||||||
|
itemId = static_rune_ids.get(roll);
|
||||||
|
}catch(Exception e){
|
||||||
|
|
||||||
}
|
}
|
||||||
|
ItemBase ib = ItemBase.getItemBase(itemId);
|
||||||
if(lootTableID == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
int RuneTableID = 0;
|
|
||||||
for(GenTableEntry entry : _genTables.get(lootTableID)){
|
|
||||||
try {
|
|
||||||
if (ItemBase.getItemBase(_itemTables.get(entry.itemTableID).get(0).cacheID).getType().equals(Enum.ItemType.RUNE)) {
|
|
||||||
RuneTableID = entry.itemTableID;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}catch(Exception e){
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if(RuneTableID == 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
ItemBase ib = ItemBase.getItemBase(rollRandomItem(RuneTableID));
|
|
||||||
if(ib != null){
|
if(ib != null){
|
||||||
MobLoot toAdd = new MobLoot(mob,ib,false);
|
MobLoot toAdd = new MobLoot(mob,ib,false);
|
||||||
mob.getCharItemManager().addItemToInventory(toAdd);
|
mob.getCharItemManager().addItemToInventory(toAdd);
|
||||||
@@ -460,7 +477,27 @@ public enum LootManager {
|
|||||||
if (suffixMod == null)
|
if (suffixMod == null)
|
||||||
return inItem;
|
return inItem;
|
||||||
|
|
||||||
if (suffixMod.action.length() > 0) {
|
int moveSpeedRoll = ThreadLocalRandom.current().nextInt(100);
|
||||||
|
if(inItem.getItemBase().getValidSlot() == MBServerStatics.SLOT_FEET && moveSpeedRoll < 10){
|
||||||
|
int rankRoll = ThreadLocalRandom.current().nextInt(10);
|
||||||
|
String suffixSpeed = "SUF-148";
|
||||||
|
switch(rankRoll) {
|
||||||
|
case 1:
|
||||||
|
case 2:
|
||||||
|
case 3:
|
||||||
|
suffixSpeed = "SUF-149";
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
case 5:
|
||||||
|
case 6:
|
||||||
|
case 7:
|
||||||
|
suffixSpeed = "SUF-150";
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
inItem.setSuffix(suffixSpeed);
|
||||||
|
inItem.addPermanentEnchantment(suffixSpeed, 0, suffixMod.level, false);
|
||||||
|
}else if (suffixMod.action.length() > 0) {
|
||||||
inItem.setSuffix(suffixMod.action);
|
inItem.setSuffix(suffixMod.action);
|
||||||
inItem.addPermanentEnchantment(suffixMod.action, 0, suffixMod.level, false);
|
inItem.addPermanentEnchantment(suffixMod.action, 0, suffixMod.level, false);
|
||||||
}
|
}
|
||||||
@@ -572,7 +609,7 @@ public enum LootManager {
|
|||||||
ItemBase itemBase = me.getItemBase();
|
ItemBase itemBase = me.getItemBase();
|
||||||
if(isVorg) {
|
if(isVorg) {
|
||||||
mob.spawnTime = ThreadLocalRandom.current().nextInt(300, 2700);
|
mob.spawnTime = ThreadLocalRandom.current().nextInt(300, 2700);
|
||||||
dropChance = 10;
|
dropChance = 7.5f;
|
||||||
itemBase = getRandomVorg(itemBase);
|
itemBase = getRandomVorg(itemBase);
|
||||||
}
|
}
|
||||||
if (equipmentRoll > dropChance)
|
if (equipmentRoll > dropChance)
|
||||||
@@ -605,6 +642,82 @@ public enum LootManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void newFatePeddler(PlayerCharacter playerCharacter, Item gift) {
|
||||||
|
|
||||||
|
CharacterItemManager itemMan = playerCharacter.getCharItemManager();
|
||||||
|
|
||||||
|
if (itemMan == null)
|
||||||
|
return;
|
||||||
|
|
||||||
|
//check if player owns the gift he is trying to open
|
||||||
|
|
||||||
|
if (!itemMan.doesCharOwnThisItem(gift.getObjectUUID()))
|
||||||
|
return;
|
||||||
|
|
||||||
|
ItemBase ib = gift.getItemBase();
|
||||||
|
|
||||||
|
MobLoot winnings = null;
|
||||||
|
|
||||||
|
if (ib == null)
|
||||||
|
return;
|
||||||
|
switch (ib.getUUID()) {
|
||||||
|
case 971070: //wrapped rune
|
||||||
|
ItemBase runeBase = null;
|
||||||
|
int roll = ThreadLocalRandom.current().nextInt(static_rune_ids.size() + 1);
|
||||||
|
int itemId = static_rune_ids.get(0);
|
||||||
|
try {
|
||||||
|
itemId = static_rune_ids.get(roll);
|
||||||
|
}catch(Exception e){
|
||||||
|
|
||||||
|
}
|
||||||
|
runeBase = ItemBase.getItemBase(itemId);
|
||||||
|
if(runeBase != null) {
|
||||||
|
winnings = new MobLoot(playerCharacter, runeBase, 1, false);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 971012: //wrapped glass
|
||||||
|
int chance = ThreadLocalRandom.current().nextInt(100);
|
||||||
|
if(chance == 50){
|
||||||
|
int ID = 7000000;
|
||||||
|
int additional = ThreadLocalRandom.current().nextInt(0,28);
|
||||||
|
ID += (additional * 10);
|
||||||
|
ItemBase glassBase = ItemBase.getItemBase(ID);
|
||||||
|
if(glassBase != null) {
|
||||||
|
winnings = new MobLoot(playerCharacter, glassBase, 1, false);
|
||||||
|
ChatManager.chatSystemInfo(playerCharacter, "You've Won A " + glassBase.getName());
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
ChatManager.chatSystemInfo(playerCharacter, "Please Try Again!");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (winnings == null) {
|
||||||
|
itemMan.consume(gift);
|
||||||
|
itemMan.updateInventory();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//early exit if the inventory of the player will not hold the item
|
||||||
|
|
||||||
|
if (!itemMan.hasRoomInventory(winnings.getItemBase().getWeight())) {
|
||||||
|
ErrorPopupMsg.sendErrorPopup(playerCharacter, 21);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
winnings.setIsID(true);
|
||||||
|
|
||||||
|
//remove gift from inventory
|
||||||
|
|
||||||
|
itemMan.consume(gift);
|
||||||
|
|
||||||
|
//add winnings to player inventory
|
||||||
|
|
||||||
|
Item playerWinnings = winnings.promoteToItem(playerCharacter);
|
||||||
|
itemMan.addItemToInventory(playerWinnings);
|
||||||
|
itemMan.updateInventory();
|
||||||
|
|
||||||
|
}
|
||||||
public static void peddleFate(PlayerCharacter playerCharacter, Item gift) {
|
public static void peddleFate(PlayerCharacter playerCharacter, Item gift) {
|
||||||
|
|
||||||
//get table ID for the itembase ID
|
//get table ID for the itembase ID
|
||||||
@@ -708,7 +821,7 @@ public enum LootManager {
|
|||||||
public static ItemBase getRandomVorg(ItemBase itemBase){
|
public static ItemBase getRandomVorg(ItemBase itemBase){
|
||||||
int roll = 0;
|
int roll = 0;
|
||||||
if(vorg_ha_uuids.contains(itemBase.getUUID())) {
|
if(vorg_ha_uuids.contains(itemBase.getUUID())) {
|
||||||
roll = ThreadLocalRandom.current().nextInt(0, 10);
|
roll = ThreadLocalRandom.current().nextInt(0, 9);
|
||||||
switch (roll) {
|
switch (roll) {
|
||||||
case 1:
|
case 1:
|
||||||
return ItemBase.getItemBase(vorg_ha_uuids.get(0));
|
return ItemBase.getItemBase(vorg_ha_uuids.get(0));
|
||||||
@@ -732,7 +845,7 @@ public enum LootManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(vorg_ma_uuids.contains(itemBase.getUUID())) {
|
if(vorg_ma_uuids.contains(itemBase.getUUID())) {
|
||||||
roll = ThreadLocalRandom.current().nextInt(0, 10);
|
roll = ThreadLocalRandom.current().nextInt(0, 8);
|
||||||
switch (roll) {
|
switch (roll) {
|
||||||
case 1:
|
case 1:
|
||||||
return ItemBase.getItemBase(vorg_ma_uuids.get(0));
|
return ItemBase.getItemBase(vorg_ma_uuids.get(0));
|
||||||
@@ -754,7 +867,7 @@ public enum LootManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(vorg_la_uuids.contains(itemBase.getUUID())) {
|
if(vorg_la_uuids.contains(itemBase.getUUID())) {
|
||||||
roll = ThreadLocalRandom.current().nextInt(0, 10);
|
roll = ThreadLocalRandom.current().nextInt(0, 8);
|
||||||
switch (roll) {
|
switch (roll) {
|
||||||
case 1:
|
case 1:
|
||||||
return ItemBase.getItemBase(vorg_la_uuids.get(0));
|
return ItemBase.getItemBase(vorg_la_uuids.get(0));
|
||||||
@@ -776,7 +889,7 @@ public enum LootManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(vorg_cloth_uuids.contains(itemBase.getUUID())) {
|
if(vorg_cloth_uuids.contains(itemBase.getUUID())) {
|
||||||
roll = ThreadLocalRandom.current().nextInt(0, 10);
|
roll = ThreadLocalRandom.current().nextInt(0, 5);
|
||||||
switch (roll) {
|
switch (roll) {
|
||||||
case 1:
|
case 1:
|
||||||
return ItemBase.getItemBase(vorg_cloth_uuids.get(0));
|
return ItemBase.getItemBase(vorg_cloth_uuids.get(0));
|
||||||
|
|||||||
@@ -174,9 +174,27 @@ public enum PowersManager {
|
|||||||
|
|
||||||
if(pc.isMoving())
|
if(pc.isMoving())
|
||||||
pc.stopMovement(pc.getMovementLoc());
|
pc.stopMovement(pc.getMovementLoc());
|
||||||
|
if(msg.getPowerUsedID() != 421084024 && origin.getPlayerCharacter().getPromotionClassID() != 2513) {
|
||||||
|
if (!origin.getPlayerCharacter().getPowers().containsKey(msg.getPowerUsedID())) {
|
||||||
|
Logger.error(origin.getPlayerCharacter().getFirstName() + " attempted to cast a power they do not have");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//crusader sacrifice
|
||||||
|
if((msg.getPowerUsedID() == 428695403 && msg.getTargetID() == pc.getObjectUUID())){
|
||||||
|
RecyclePowerMsg recyclePowerMsg = new RecyclePowerMsg(msg.getPowerUsedID());
|
||||||
|
Dispatch dispatch = Dispatch.borrow(origin.getPlayerCharacter(), recyclePowerMsg);
|
||||||
|
DispatchMessage.dispatchMsgDispatch(dispatch, DispatchChannel.PRIMARY);
|
||||||
|
|
||||||
if(msg.getPowerUsedID() == 429429978){
|
// Send Fail to cast message
|
||||||
applyPower(origin.getPlayerCharacter(),origin.getPlayerCharacter(),origin.getPlayerCharacter().getLoc(),429429978,msg.getNumTrains(),false);
|
if (pc != null) {
|
||||||
|
sendPowerMsg(pc, 2, msg);
|
||||||
|
if (pc.isCasting()) {
|
||||||
|
pc.update(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
pc.setIsCasting(false);
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -198,6 +216,10 @@ public enum PowersManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(msg.getPowerUsedID() == 429429978){
|
||||||
|
origin.getPlayerCharacter().getRecycleTimers().remove(429429978);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void useMobPower(Mob caster, AbstractCharacter target, PowersBase pb, int rank) {
|
public static void useMobPower(Mob caster, AbstractCharacter target, PowersBase pb, int rank) {
|
||||||
@@ -825,7 +847,6 @@ public enum PowersManager {
|
|||||||
if (playerCharacter == null || msg == null)
|
if (playerCharacter == null || msg == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
||||||
//handle sprint for bard sprint
|
//handle sprint for bard sprint
|
||||||
if(msg.getPowerUsedID() == 429005674){
|
if(msg.getPowerUsedID() == 429005674){
|
||||||
msg.setPowerUsedID(429611355);
|
msg.setPowerUsedID(429611355);
|
||||||
@@ -851,7 +872,7 @@ public enum PowersManager {
|
|||||||
if(msg.getTargetType() == GameObjectType.PlayerCharacter.ordinal()) {
|
if(msg.getTargetType() == GameObjectType.PlayerCharacter.ordinal()) {
|
||||||
PlayerCharacter target = PlayerCharacter.getPlayerCharacter(msg.getTargetID());
|
PlayerCharacter target = PlayerCharacter.getPlayerCharacter(msg.getTargetID());
|
||||||
if (msg.getPowerUsedID() == 429601664)
|
if (msg.getPowerUsedID() == 429601664)
|
||||||
if(target.getPromotionClassID() != 2516)
|
if(target.getPromotionClassID() != 2516)//templar
|
||||||
PlayerCharacter.getPlayerCharacter(msg.getTargetID()).removeEffectBySource(EffectSourceType.Transform, msg.getNumTrains(), true);
|
PlayerCharacter.getPlayerCharacter(msg.getTargetID()).removeEffectBySource(EffectSourceType.Transform, msg.getNumTrains(), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -896,6 +917,9 @@ public enum PowersManager {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(pb.targetSelf)
|
||||||
|
msg.setTargetID(playerCharacter.getObjectUUID());
|
||||||
|
|
||||||
int trains = msg.getNumTrains();
|
int trains = msg.getNumTrains();
|
||||||
|
|
||||||
// verify player is not stunned or power type is blocked
|
// verify player is not stunned or power type is blocked
|
||||||
@@ -1152,7 +1176,18 @@ public enum PowersManager {
|
|||||||
|
|
||||||
|
|
||||||
//DispatchMessage.dispatchMsgToInterestArea(playerCharacter, msg, DispatchChannel.PRIMARY, MBServerStatics.CHARACTER_LOAD_RANGE, true, false);
|
//DispatchMessage.dispatchMsgToInterestArea(playerCharacter, msg, DispatchChannel.PRIMARY, MBServerStatics.CHARACTER_LOAD_RANGE, true, false);
|
||||||
|
//handle mob hate values
|
||||||
|
HashSet<AbstractWorldObject> mobs = WorldGrid.getObjectsInRangePartial(playerCharacter.loc,60.0f,MBServerStatics.MASK_MOB);
|
||||||
|
for(AbstractWorldObject awo : mobs){
|
||||||
|
Mob mobTarget = (Mob)awo;
|
||||||
|
if(mobTarget.hate_values != null) {
|
||||||
|
if (mobTarget.hate_values.containsKey(playerCharacter)) {
|
||||||
|
mobTarget.hate_values.put(playerCharacter, mobTarget.hate_values.get(playerCharacter) + pb.getHateValue(trains));
|
||||||
|
} else {
|
||||||
|
mobTarget.hate_values.put(playerCharacter, pb.getHateValue(trains));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1623,17 +1658,28 @@ public enum PowersManager {
|
|||||||
|
|
||||||
// create list of characters
|
// create list of characters
|
||||||
HashSet<AbstractCharacter> trackChars;
|
HashSet<AbstractCharacter> trackChars;
|
||||||
switch(msg.getPowerToken()){
|
|
||||||
case 431511776:
|
PowersBase trackPower = PowersManager.getPowerByToken(msg.getPowerToken());
|
||||||
case 429578587:
|
if(trackPower != null && trackPower.category.equals("TRACK")){
|
||||||
case 429503360:
|
trackChars = getTrackList(playerCharacter);
|
||||||
trackChars = getTrackList(playerCharacter);
|
}else{
|
||||||
break;
|
trackChars = RangeBasedAwo.getTrackList(allTargets, playerCharacter, maxTargets);
|
||||||
default:
|
|
||||||
trackChars = RangeBasedAwo.getTrackList(allTargets, playerCharacter, maxTargets);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//switch(msg.getPowerToken()){
|
||||||
|
// case 431511776: // Hunt Foe Huntress
|
||||||
|
// case 429578587: // Hunt Foe Scout
|
||||||
|
// case 429503360: // Track Huntsman
|
||||||
|
// case 44106356: //
|
||||||
|
// trackChars = getTrackList(playerCharacter);
|
||||||
|
// break;
|
||||||
|
// default:
|
||||||
|
// trackChars = RangeBasedAwo.getTrackList(allTargets, playerCharacter, maxTargets);
|
||||||
|
// break;
|
||||||
|
//}
|
||||||
|
|
||||||
TrackWindowMsg trackWindowMsg = new TrackWindowMsg(msg);
|
TrackWindowMsg trackWindowMsg = new TrackWindowMsg(msg);
|
||||||
|
|
||||||
// send track window
|
// send track window
|
||||||
@@ -2424,7 +2470,8 @@ public enum PowersManager {
|
|||||||
public static boolean testAttack(PlayerCharacter pc, AbstractWorldObject awo,
|
public static boolean testAttack(PlayerCharacter pc, AbstractWorldObject awo,
|
||||||
PowersBase pb, PerformActionMsg msg) {
|
PowersBase pb, PerformActionMsg msg) {
|
||||||
// Get defense for target
|
// Get defense for target
|
||||||
float atr = CharacterSkill.getATR(pc, pb.getSkillName());
|
//float atr = CharacterSkill.getATR(pc, pb.getSkillName());
|
||||||
|
float atr = PlayerCombatStats.getSpellAtr(pc, pb);
|
||||||
float defense;
|
float defense;
|
||||||
|
|
||||||
if (AbstractWorldObject.IsAbstractCharacter(awo)) {
|
if (AbstractWorldObject.IsAbstractCharacter(awo)) {
|
||||||
@@ -3029,6 +3076,7 @@ public enum PowersManager {
|
|||||||
case 429502507:
|
case 429502507:
|
||||||
case 428398816:
|
case 428398816:
|
||||||
case 429446315:
|
case 429446315:
|
||||||
|
case 429441979:
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
|||||||
+125
-88
@@ -9,6 +9,7 @@
|
|||||||
package engine.mobileAI;
|
package engine.mobileAI;
|
||||||
|
|
||||||
import engine.Enum;
|
import engine.Enum;
|
||||||
|
import engine.InterestManagement.InterestManager;
|
||||||
import engine.InterestManagement.WorldGrid;
|
import engine.InterestManagement.WorldGrid;
|
||||||
import engine.gameManager.*;
|
import engine.gameManager.*;
|
||||||
import engine.math.Vector3f;
|
import engine.math.Vector3f;
|
||||||
@@ -26,6 +27,7 @@ import engine.server.MBServerStatics;
|
|||||||
import org.pmw.tinylog.Logger;
|
import org.pmw.tinylog.Logger;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Map.Entry;
|
import java.util.Map.Entry;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
@@ -93,7 +95,7 @@ public class MobAI {
|
|||||||
}
|
}
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: AttackTarget" + " " + e.getMessage());
|
////(mob.getObjectUUID() + " " + mob.getName() + " Failed At: AttackTarget" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -106,6 +108,12 @@ public class MobAI {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(target.getPet() != null && target.getPet().isAlive() && !target.getPet().isSiege()){
|
||||||
|
mob.setCombatTarget(target.getPet());
|
||||||
|
AttackTarget(mob,mob.combatTarget);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (mob.BehaviourType.callsForHelp)
|
if (mob.BehaviourType.callsForHelp)
|
||||||
MobCallForHelp(mob);
|
MobCallForHelp(mob);
|
||||||
|
|
||||||
@@ -126,6 +134,9 @@ public class MobAI {
|
|||||||
if (mob.isMoving() && mob.getRange() > 20)
|
if (mob.isMoving() && mob.getRange() > 20)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if(target.combatStats == null)
|
||||||
|
target.combatStats = new PlayerCombatStats(target);
|
||||||
|
|
||||||
// add timer for last attack.
|
// add timer for last attack.
|
||||||
|
|
||||||
ItemBase mainHand = mob.getWeaponItemBase(true);
|
ItemBase mainHand = mob.getWeaponItemBase(true);
|
||||||
@@ -156,8 +167,14 @@ public class MobAI {
|
|||||||
if (target.getPet().getCombatTarget() == null && target.getPet().assist == true)
|
if (target.getPet().getCombatTarget() == null && target.getPet().assist == true)
|
||||||
target.getPet().setCombatTarget(mob);
|
target.getPet().setCombatTarget(mob);
|
||||||
|
|
||||||
|
try{
|
||||||
|
InterestManager.forceLoad(mob);
|
||||||
|
}catch(Exception e){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: AttackPlayer" + " " + e.getMessage());
|
////(mob.getObjectUUID() + " " + mob.getName() + " Failed At: AttackPlayer" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -215,7 +232,7 @@ public class MobAI {
|
|||||||
//}
|
//}
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: AttackBuilding" + " " + e.getMessage());
|
////(mob.getObjectUUID() + " " + mob.getName() + " Failed At: AttackBuilding" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -254,7 +271,7 @@ public class MobAI {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: AttackMob" + " " + e.getMessage());
|
////(mob.getObjectUUID() + " " + mob.getName() + " Failed At: AttackMob" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -307,7 +324,7 @@ public class MobAI {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: AttackTarget" + " " + e.getMessage());
|
////(mob.getObjectUUID() + " " + mob.getName() + " Failed At: AttackTarget" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -351,7 +368,7 @@ public class MobAI {
|
|||||||
return mob.nextCastTime <= System.currentTimeMillis();
|
return mob.nextCastTime <= System.currentTimeMillis();
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: canCast" + " " + e.getMessage());
|
////(mob.getObjectUUID() + " " + mob.getName() + " Failed At: canCast" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -437,7 +454,7 @@ public class MobAI {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: MobCast" + " " + e.getMessage());
|
////(mob.getObjectUUID() + " " + mob.getName() + " Failed At: MobCast" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -559,7 +576,7 @@ public class MobAI {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: MobCast" + " " + e.getMessage());
|
////(mob.getObjectUUID() + " " + mob.getName() + " Failed At: MobCast" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -595,7 +612,7 @@ public class MobAI {
|
|||||||
mob.nextCallForHelp = System.currentTimeMillis() + 60000;
|
mob.nextCallForHelp = System.currentTimeMillis() + 60000;
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: MobCallForHelp" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: MobCallForHelp" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -607,9 +624,6 @@ public class MobAI {
|
|||||||
|
|
||||||
if (mob == null)
|
if (mob == null)
|
||||||
return;
|
return;
|
||||||
if(mob.isAlive())
|
|
||||||
if(!mob.getMovementLoc().equals(Vector3fImmutable.ZERO))
|
|
||||||
mob.setLoc(mob.getMovementLoc());
|
|
||||||
|
|
||||||
if (mob.getTimestamps().containsKey("lastExecution") == false)
|
if (mob.getTimestamps().containsKey("lastExecution") == false)
|
||||||
mob.getTimestamps().put("lastExecution", System.currentTimeMillis());
|
mob.getTimestamps().put("lastExecution", System.currentTimeMillis());
|
||||||
@@ -665,6 +679,10 @@ public class MobAI {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(mob.isAlive())
|
||||||
|
if(!mob.getMovementLoc().equals(Vector3fImmutable.ZERO))
|
||||||
|
mob.setLoc(mob.getMovementLoc());
|
||||||
|
|
||||||
if(mob.isPet() == false && mob.isPlayerGuard == false)
|
if(mob.isPet() == false && mob.isPlayerGuard == false)
|
||||||
CheckToSendMobHome(mob);
|
CheckToSendMobHome(mob);
|
||||||
|
|
||||||
@@ -715,12 +733,14 @@ public class MobAI {
|
|||||||
if(mob.isAlive())
|
if(mob.isAlive())
|
||||||
RecoverHealth(mob);
|
RecoverHealth(mob);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: DetermineAction" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: DetermineAction" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void CheckForAggro(Mob aiAgent) {
|
private static void CheckForAggro(Mob aiAgent) {
|
||||||
|
|
||||||
|
|
||||||
|
//old system
|
||||||
try {
|
try {
|
||||||
|
|
||||||
//looks for and sets mobs combatTarget
|
//looks for and sets mobs combatTarget
|
||||||
@@ -755,13 +775,11 @@ public class MobAI {
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
// No aggro for this race type
|
// No aggro for this race type
|
||||||
|
if (aiAgent.notEnemy.size() > 0 && aiAgent.notEnemy.contains(loadedPlayer.getRace().getRaceType().getMonsterType()))
|
||||||
if (aiAgent.notEnemy.size() > 0 && aiAgent.notEnemy.contains(loadedPlayer.getRace().getRaceType().getMonsterType()) == true)
|
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
//mob has enemies and this player race is not it
|
//mob has enemies and this player race is not it
|
||||||
|
if (aiAgent.enemy.size() > 0 && !aiAgent.enemy.contains(loadedPlayer.getRace().getRaceType().getMonsterType()))
|
||||||
if (aiAgent.enemy.size() > 0 && aiAgent.enemy.contains(loadedPlayer.getRace().getRaceType().getMonsterType()) == false)
|
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (MovementUtilities.inRangeToAggro(aiAgent, loadedPlayer)) {
|
if (MovementUtilities.inRangeToAggro(aiAgent, loadedPlayer)) {
|
||||||
@@ -790,7 +808,7 @@ public class MobAI {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(aiAgent.getObjectUUID() + " " + aiAgent.getName() + " Failed At: CheckForAggro" + " " + e.getMessage());
|
//(aiAgent.getObjectUUID() + " " + aiAgent.getName() + " Failed At: CheckForAggro" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -851,7 +869,7 @@ public class MobAI {
|
|||||||
|
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: CheckMobMovement" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: CheckMobMovement" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -905,7 +923,7 @@ public class MobAI {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(aiAgent.getObjectUUID() + " " + aiAgent.getName() + " Failed At: CheckForRespawn" + " " + e.getMessage());
|
//(aiAgent.getObjectUUID() + " " + aiAgent.getName() + " Failed At: CheckForRespawn" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -931,7 +949,7 @@ public class MobAI {
|
|||||||
AttackTarget(mob, mob.getCombatTarget());
|
AttackTarget(mob, mob.getCombatTarget());
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: CheckForAttack" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: CheckForAttack" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -958,7 +976,8 @@ public class MobAI {
|
|||||||
if (mob.BehaviourType.ordinal() == Enum.MobBehaviourType.GuardCaptain.ordinal())
|
if (mob.BehaviourType.ordinal() == Enum.MobBehaviourType.GuardCaptain.ordinal())
|
||||||
CheckForPlayerGuardAggro(mob);
|
CheckForPlayerGuardAggro(mob);
|
||||||
} else {
|
} else {
|
||||||
CheckForAggro(mob);
|
if(mob.combatTarget == null)
|
||||||
|
NewAggroMechanic(mob);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -992,7 +1011,7 @@ public class MobAI {
|
|||||||
mob.setCombatTarget(null);
|
mob.setCombatTarget(null);
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: CheckToSendMobHome" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: CheckToSendMobHome" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1035,7 +1054,7 @@ public class MobAI {
|
|||||||
mob.updateMovementState();
|
mob.updateMovementState();
|
||||||
mob.updateLocation();
|
mob.updateLocation();
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: chaseTarget" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: chaseTarget" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1067,7 +1086,7 @@ public class MobAI {
|
|||||||
mob.setCombatTarget(aggroMob);
|
mob.setCombatTarget(aggroMob);
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: SafeGuardAggro" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: SafeGuardAggro" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1090,21 +1109,10 @@ public class MobAI {
|
|||||||
if (mob.getCombatTarget() == null)
|
if (mob.getCombatTarget() == null)
|
||||||
CheckForPlayerGuardAggro(mob);
|
CheckForPlayerGuardAggro(mob);
|
||||||
|
|
||||||
AbstractWorldObject newTarget = ChangeTargetFromHateValue(mob);
|
|
||||||
|
|
||||||
if (newTarget != null) {
|
|
||||||
|
|
||||||
if (newTarget.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)) {
|
|
||||||
if (GuardCanAggro(mob, (PlayerCharacter) newTarget))
|
|
||||||
mob.setCombatTarget(newTarget);
|
|
||||||
} else
|
|
||||||
mob.setCombatTarget(newTarget);
|
|
||||||
|
|
||||||
}
|
|
||||||
CheckMobMovement(mob);
|
CheckMobMovement(mob);
|
||||||
CheckForAttack(mob);
|
CheckForAttack(mob);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: GuardCaptainLogic" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: GuardCaptainLogic" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1126,7 +1134,7 @@ public class MobAI {
|
|||||||
CheckMobMovement(mob);
|
CheckMobMovement(mob);
|
||||||
CheckForAttack(mob);
|
CheckForAttack(mob);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: GuardMinionLogic" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: GuardMinionLogic" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1140,7 +1148,7 @@ public class MobAI {
|
|||||||
else
|
else
|
||||||
CheckForAttack(mob);
|
CheckForAttack(mob);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: GuardWallArcherLogic" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: GuardWallArcherLogic" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1161,7 +1169,7 @@ public class MobAI {
|
|||||||
|
|
||||||
CheckForAttack(mob);
|
CheckForAttack(mob);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: PetLogic" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: PetLogic" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1177,7 +1185,7 @@ public class MobAI {
|
|||||||
|
|
||||||
CheckForAttack(mob);
|
CheckForAttack(mob);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: HamletGuardLogic" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: HamletGuardLogic" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1192,17 +1200,11 @@ public class MobAI {
|
|||||||
|
|
||||||
if (mob.BehaviourType.isAgressive) {
|
if (mob.BehaviourType.isAgressive) {
|
||||||
|
|
||||||
AbstractWorldObject newTarget = ChangeTargetFromHateValue(mob);
|
if (mob.getCombatTarget() == null) {
|
||||||
|
if (mob.BehaviourType == Enum.MobBehaviourType.HamletGuard)
|
||||||
if (newTarget != null)
|
SafeGuardAggro(mob); //safehold guard
|
||||||
mob.setCombatTarget(newTarget);
|
else
|
||||||
else {
|
NewAggroMechanic(mob);//CheckForAggro(mob); //normal aggro
|
||||||
if (mob.getCombatTarget() == null) {
|
|
||||||
if (mob.BehaviourType == Enum.MobBehaviourType.HamletGuard)
|
|
||||||
SafeGuardAggro(mob); //safehold guard
|
|
||||||
else
|
|
||||||
CheckForAggro(mob); //normal aggro
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1216,8 +1218,9 @@ public class MobAI {
|
|||||||
if (!mob.BehaviourType.isWimpy && mob.getCombatTarget() != null)
|
if (!mob.BehaviourType.isWimpy && mob.getCombatTarget() != null)
|
||||||
CheckForAttack(mob);
|
CheckForAttack(mob);
|
||||||
|
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: DefaultLogic" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: DefaultLogic" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1267,7 +1270,7 @@ public class MobAI {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: CheckForPlayerGuardAggro" + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: CheckForPlayerGuardAggro" + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1330,7 +1333,7 @@ public class MobAI {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: GuardCanAggro" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: GuardCanAggro" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -1379,41 +1382,10 @@ public class MobAI {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: randomGuardPatrolPoints" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: randomGuardPatrolPoints" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static AbstractWorldObject ChangeTargetFromHateValue(Mob mob) {
|
|
||||||
|
|
||||||
try {
|
|
||||||
|
|
||||||
float CurrentHateValue = 0;
|
|
||||||
|
|
||||||
if (mob.getCombatTarget() != null && mob.getCombatTarget().getObjectType().equals(Enum.GameObjectType.PlayerCharacter))
|
|
||||||
CurrentHateValue = ((PlayerCharacter) mob.getCombatTarget()).getHateValue();
|
|
||||||
|
|
||||||
AbstractWorldObject mostHatedTarget = null;
|
|
||||||
|
|
||||||
for (Entry playerEntry : mob.playerAgroMap.entrySet()) {
|
|
||||||
|
|
||||||
PlayerCharacter potentialTarget = PlayerCharacter.getFromCache((int) playerEntry.getKey());
|
|
||||||
|
|
||||||
if (potentialTarget.equals(mob.getCombatTarget()))
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (potentialTarget != null && potentialTarget.getHateValue() > CurrentHateValue && MovementUtilities.inRangeToAggro(mob, potentialTarget)) {
|
|
||||||
CurrentHateValue = potentialTarget.getHateValue();
|
|
||||||
mostHatedTarget = potentialTarget;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
return mostHatedTarget;
|
|
||||||
} catch (Exception e) {
|
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: ChangeTargetFromMostHated" + " " + e.getMessage());
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void RecoverHealth(Mob mob) {
|
public static void RecoverHealth(Mob mob) {
|
||||||
//recover health
|
//recover health
|
||||||
try {
|
try {
|
||||||
@@ -1431,7 +1403,7 @@ public class MobAI {
|
|||||||
mob.setHealth(mob.getHealthMax());
|
mob.setHealth(mob.getHealthMax());
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: RecoverHealth" + " " + e.getMessage());
|
//(mob.getObjectUUID() + " " + mob.getName() + " Failed At: RecoverHealth" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1441,4 +1413,69 @@ public class MobAI {
|
|||||||
rwss.setPlayer(mob);
|
rwss.setPlayer(mob);
|
||||||
DispatchMessage.sendToAllInRange(mob, rwss);
|
DispatchMessage.sendToAllInRange(mob, rwss);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void NewAggroMechanic(Mob mob){
|
||||||
|
|
||||||
|
if(mob == null || !mob.isAlive() || mob.playerAgroMap.isEmpty()){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(mob.BehaviourType.equals(Enum.MobBehaviourType.HamletGuard)){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(mob.hate_values == null)
|
||||||
|
mob.hate_values = new HashMap<>();
|
||||||
|
|
||||||
|
if(mob.combatTarget != null)
|
||||||
|
return;
|
||||||
|
|
||||||
|
HashSet<AbstractWorldObject> inRange = WorldGrid.getObjectsInRangePartial(mob.loc,60.0f,MBServerStatics.MASK_PLAYER);
|
||||||
|
|
||||||
|
if(inRange.isEmpty()){
|
||||||
|
mob.setCombatTarget(null);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//clear out any players who are not in hated range anymore
|
||||||
|
ArrayList<PlayerCharacter> toRemove = new ArrayList<>();
|
||||||
|
for(PlayerCharacter pc : mob.hate_values.keySet()){
|
||||||
|
if(!inRange.contains(pc))
|
||||||
|
toRemove.add(pc);
|
||||||
|
}
|
||||||
|
for(PlayerCharacter pc : toRemove){
|
||||||
|
mob.hate_values.remove(pc);
|
||||||
|
}
|
||||||
|
|
||||||
|
//find most hated target
|
||||||
|
PlayerCharacter mostHated = (PlayerCharacter)inRange.iterator().next();
|
||||||
|
for(AbstractWorldObject awo : inRange){
|
||||||
|
PlayerCharacter loadedPlayer = (PlayerCharacter)awo;
|
||||||
|
if (loadedPlayer == null)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
//Player is Dead, Mob no longer needs to attempt to aggro. Remove them from aggro map.
|
||||||
|
if (!loadedPlayer.isAlive())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
//Can't see target, skip aggro.
|
||||||
|
if (!mob.canSee(loadedPlayer))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
// No aggro for this race type
|
||||||
|
if (mob.notEnemy != null && mob.notEnemy.size() > 0 && mob.notEnemy.contains(loadedPlayer.getRace().getRaceType().getMonsterType()))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
//mob has enemies and this player race is not it
|
||||||
|
if (mob.enemy != null && mob.enemy.size() > 0 && !mob.enemy.contains(loadedPlayer.getRace().getRaceType().getMonsterType()))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(mob.hate_values.containsKey(loadedPlayer))
|
||||||
|
if(mob.hate_values.get(loadedPlayer) > mob.hate_values.get(mostHated))
|
||||||
|
mostHated = loadedPlayer;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(mostHated != null)
|
||||||
|
mob.setCombatTarget(mostHated);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -43,14 +43,13 @@ public class MobRespawnThread implements Runnable {
|
|||||||
if (zones != null) {
|
if (zones != null) {
|
||||||
for (Zone zone : zones) {
|
for (Zone zone : zones) {
|
||||||
synchronized (zone) { // Optional: Synchronize on zone
|
synchronized (zone) { // Optional: Synchronize on zone
|
||||||
if (!zone.respawnQue.isEmpty() &&
|
if (!Zone.respawnQue.isEmpty() && Zone.lastRespawn + RESPAWN_INTERVAL < System.currentTimeMillis()) {
|
||||||
zone.lastRespawn + RESPAWN_INTERVAL < System.currentTimeMillis()) {
|
|
||||||
|
|
||||||
Mob respawner = zone.respawnQue.iterator().next();
|
Mob respawner = Zone.respawnQue.iterator().next();
|
||||||
if (respawner != null) {
|
if (respawner != null) {
|
||||||
respawner.respawn();
|
respawner.respawn();
|
||||||
zone.respawnQue.remove(respawner);
|
Zone.respawnQue.remove(respawner);
|
||||||
zone.lastRespawn = System.currentTimeMillis();
|
Zone.lastRespawn = System.currentTimeMillis();
|
||||||
Thread.sleep(100);
|
Thread.sleep(100);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,7 +22,6 @@ import org.pmw.tinylog.Logger;
|
|||||||
import java.util.concurrent.ThreadLocalRandom;
|
import java.util.concurrent.ThreadLocalRandom;
|
||||||
|
|
||||||
import static engine.math.FastMath.sqr;
|
import static engine.math.FastMath.sqr;
|
||||||
import static java.lang.Math.pow;
|
|
||||||
|
|
||||||
public class CombatUtilities {
|
public class CombatUtilities {
|
||||||
|
|
||||||
@@ -101,6 +100,14 @@ public class CombatUtilities {
|
|||||||
if (!target.isAlive())
|
if (!target.isAlive())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if(agent.isPet()){
|
||||||
|
try{
|
||||||
|
damage *= agent.getOwner().ZergMultiplier;
|
||||||
|
}catch(Exception ignored){
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (AbstractWorldObject.IsAbstractCharacter(target)) {
|
if (AbstractWorldObject.IsAbstractCharacter(target)) {
|
||||||
//damage = Resists.handleFortitude((AbstractCharacter) target,DamageType.Crush,damage);
|
//damage = Resists.handleFortitude((AbstractCharacter) target,DamageType.Crush,damage);
|
||||||
trueDamage = ((AbstractCharacter) target).modifyHealth(-damage, agent, false);
|
trueDamage = ((AbstractCharacter) target).modifyHealth(-damage, agent, false);
|
||||||
@@ -149,6 +156,8 @@ public class CombatUtilities {
|
|||||||
switch (target.getObjectType()) {
|
switch (target.getObjectType()) {
|
||||||
case PlayerCharacter:
|
case PlayerCharacter:
|
||||||
PlayerCharacter pc = (PlayerCharacter)target;
|
PlayerCharacter pc = (PlayerCharacter)target;
|
||||||
|
if(pc.combatStats == null)
|
||||||
|
pc.combatStats = new PlayerCombatStats(pc);
|
||||||
pc.combatStats.calculateDefense();
|
pc.combatStats.calculateDefense();
|
||||||
defense = pc.combatStats.defense;
|
defense = pc.combatStats.defense;
|
||||||
break;
|
break;
|
||||||
@@ -201,12 +210,10 @@ public class CombatUtilities {
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
int anim = 75;
|
int anim = 75;
|
||||||
float speed;
|
|
||||||
|
|
||||||
if (mainHand)
|
//handle the retaliate here because even if the mob misses you can still retaliate
|
||||||
speed = agent.getSpeedHandOne();
|
if (AbstractWorldObject.IsAbstractCharacter(target))
|
||||||
else
|
CombatManager.handleRetaliate((AbstractCharacter) target, agent);
|
||||||
speed = agent.getSpeedHandTwo();
|
|
||||||
|
|
||||||
DamageType dt = DamageType.Crush;
|
DamageType dt = DamageType.Crush;
|
||||||
|
|
||||||
@@ -288,11 +295,6 @@ public class CombatUtilities {
|
|||||||
if (((Mob) target).isSiege())
|
if (((Mob) target).isSiege())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
//handle the retaliate
|
|
||||||
|
|
||||||
if (AbstractWorldObject.IsAbstractCharacter(target))
|
|
||||||
CombatManager.handleRetaliate((AbstractCharacter) target, agent);
|
|
||||||
|
|
||||||
if (target.getObjectType() == GameObjectType.Mob) {
|
if (target.getObjectType() == GameObjectType.Mob) {
|
||||||
Mob targetMob = (Mob) target;
|
Mob targetMob = (Mob) target;
|
||||||
if (targetMob.isSiege())
|
if (targetMob.isSiege())
|
||||||
|
|||||||
@@ -66,6 +66,7 @@ public class ArcLoginNotifyMsgHandler extends AbstractClientMsgHandler {
|
|||||||
// Send Guild, Nation and IC MOTD
|
// Send Guild, Nation and IC MOTD
|
||||||
GuildManager.enterWorldMOTD(player);
|
GuildManager.enterWorldMOTD(player);
|
||||||
ChatManager.sendSystemMessage(player, ConfigManager.MB_WORLD_GREETING.getValue());
|
ChatManager.sendSystemMessage(player, ConfigManager.MB_WORLD_GREETING.getValue());
|
||||||
|
ChatManager.sendSystemMessage(player, " Experience Gain: " + ConfigManager.MB_NORMAL_EXP_RATE.getValue());
|
||||||
|
|
||||||
// Send branch string if available from ConfigManager.
|
// Send branch string if available from ConfigManager.
|
||||||
|
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ public class DestroyBuildingHandler extends AbstractClientMsgHandler {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!BuildingManager.PlayerCanControlNotOwner(building, pc))
|
if (!BuildingManager.PlayerCanControlNotOwner(building, pc) && !pc.getAccount().status.equals(Enum.AccountStatus.ADMIN))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
// Can't delete siege assets during an active bane.
|
// Can't delete siege assets during an active bane.
|
||||||
@@ -72,8 +72,8 @@ public class DestroyBuildingHandler extends AbstractClientMsgHandler {
|
|||||||
return true;
|
return true;
|
||||||
|
|
||||||
// Can't destroy a shrine
|
// Can't destroy a shrine
|
||||||
if (blueprint.getBuildingGroup() == BuildingGroup.SHRINE)
|
//if (blueprint.getBuildingGroup() == BuildingGroup.SHRINE)
|
||||||
return true;
|
// return true;
|
||||||
|
|
||||||
// Cannot destroy mines outside of normal mine mechanics
|
// Cannot destroy mines outside of normal mine mechanics
|
||||||
|
|
||||||
|
|||||||
@@ -282,6 +282,14 @@ public class MerchantMsgHandler extends AbstractClientMsgHandler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(mineTele == null){
|
if(mineTele == null){
|
||||||
|
//must be the dungeon request?
|
||||||
|
Vector3fImmutable loc = Vector3fImmutable.getRandomPointOnCircle(BuildingManager.getBuilding(2827951).loc,30f);
|
||||||
|
ChatManager.chatSystemInfo(player, "You Will Teleport To Whitehorn Citadel In " + 10 + " Seconds.");
|
||||||
|
if (10 > 0) {
|
||||||
|
//TODO add timer to teleport
|
||||||
|
TeleportJob tj = new TeleportJob(player, npc, loc, origin, true);
|
||||||
|
JobScheduler.getInstance().scheduleJob(tj, 10 * 1000);
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}else {
|
}else {
|
||||||
int time = MBServerStatics.TELEPORT_TIME_IN_SECONDS;
|
int time = MBServerStatics.TELEPORT_TIME_IN_SECONDS;
|
||||||
|
|||||||
@@ -424,9 +424,9 @@ public class ObjectActionMsgHandler extends AbstractClientMsgHandler {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 31:
|
case 31:
|
||||||
LootManager.peddleFate(player,item);
|
//LootManager.peddleFate(player,item);
|
||||||
|
LootManager.newFatePeddler(player,item);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 30: //water bucket
|
case 30: //water bucket
|
||||||
case 8: //potions, tears of saedron
|
case 8: //potions, tears of saedron
|
||||||
case 5: //runes, petition, warrant, scrolls
|
case 5: //runes, petition, warrant, scrolls
|
||||||
|
|||||||
@@ -1027,6 +1027,10 @@ public class PlaceAssetMsgHandler extends AbstractClientMsgHandler {
|
|||||||
|
|
||||||
private boolean placeCityWalls(PlayerCharacter player, ClientConnection origin, PlaceAssetMsg msg) {
|
private boolean placeCityWalls(PlayerCharacter player, ClientConnection origin, PlaceAssetMsg msg) {
|
||||||
|
|
||||||
|
if(player.getAccount().status.equals(AccountStatus.ADMIN)){
|
||||||
|
adminCreateBuildings(player,msg);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
// Member variables
|
// Member variables
|
||||||
|
|
||||||
Zone serverZone;
|
Zone serverZone;
|
||||||
@@ -1165,7 +1169,7 @@ public class PlaceAssetMsgHandler extends AbstractClientMsgHandler {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private Building createStructure(PlayerCharacter playerCharacter, PlacementInfo buildingInfo, Zone currentZone) {
|
private static Building createStructure(PlayerCharacter playerCharacter, PlacementInfo buildingInfo, Zone currentZone) {
|
||||||
|
|
||||||
Blueprint blueprint;
|
Blueprint blueprint;
|
||||||
Building newMesh;
|
Building newMesh;
|
||||||
@@ -1387,4 +1391,16 @@ public class PlaceAssetMsgHandler extends AbstractClientMsgHandler {
|
|||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void adminCreateBuildings(PlayerCharacter pc, PlaceAssetMsg msg){
|
||||||
|
//handled for building dungeon layouts
|
||||||
|
Zone zone = ZoneManager.getZoneByZoneID(993);
|
||||||
|
for(PlacementInfo placement : msg.getPlacementInfo()){
|
||||||
|
Building building = createStructure(pc,placement,zone);
|
||||||
|
if(building != null) {
|
||||||
|
building.setProtectionState(ProtectionState.NPC);
|
||||||
|
building.setRank(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -78,6 +78,27 @@ public class ApplyRuneMsg extends ClientNetMsg {
|
|||||||
}
|
}
|
||||||
int raceID = playerCharacter.getRaceID();
|
int raceID = playerCharacter.getRaceID();
|
||||||
//Check race is met
|
//Check race is met
|
||||||
|
|
||||||
|
//confirm sub-race runes are applicable only by proper races
|
||||||
|
switch(runeID){
|
||||||
|
case 252134: //elf
|
||||||
|
case 252135: // elf
|
||||||
|
case 252136: // elf
|
||||||
|
if(playerCharacter.getRaceID() != 2008 && playerCharacter.getRaceID() != 2009)
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
case 252129: // human
|
||||||
|
case 252130: // human
|
||||||
|
case 252131: // human
|
||||||
|
case 252132: // human
|
||||||
|
case 252133: // human
|
||||||
|
if(playerCharacter.getRaceID() != 2011 && playerCharacter.getRaceID() != 2012)
|
||||||
|
return false;
|
||||||
|
break;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
ConcurrentHashMap<Integer, Boolean> races = rb.getRace();
|
ConcurrentHashMap<Integer, Boolean> races = rb.getRace();
|
||||||
if(runeID != 3007 && runeID != 3014) {//bounty hunter and huntsman
|
if(runeID != 3007 && runeID != 3014) {//bounty hunter and huntsman
|
||||||
if (races.size() > 0) {
|
if (races.size() > 0) {
|
||||||
|
|||||||
@@ -567,8 +567,12 @@ public class ManageCityAssetsMsg extends ClientNetMsg {
|
|||||||
writer.put(labelSiege);// 1 sets the protection under siege
|
writer.put(labelSiege);// 1 sets the protection under siege
|
||||||
writer.put(labelCeaseFire); //0 with 1 set above sets to under siege // 1 with 1 set above sets protection status to under siege(cease fire)
|
writer.put(labelCeaseFire); //0 with 1 set above sets to under siege // 1 with 1 set above sets protection status to under siege(cease fire)
|
||||||
|
|
||||||
writer.put(buttonTransfer);// 1 enables the transfer asset button
|
writer.put(buttonTransfer);
|
||||||
writer.put(buttonDestroy);// 1 enables the destroy asset button
|
if(building.getBlueprint() != null && building.getBlueprint().getBuildingGroup() != null && building.getBlueprint().getBuildingGroup().equals(BuildingGroup.SHRINE)) {// 1 enables the transfer asset button
|
||||||
|
writer.put((byte)1);
|
||||||
|
}else {
|
||||||
|
writer.put(buttonDestroy);// 1 enables the destroy asset button
|
||||||
|
}
|
||||||
writer.put(buttonAbandon);// 1 here enables the abandon asset button
|
writer.put(buttonAbandon);// 1 here enables the abandon asset button
|
||||||
writer.put(buttonUpgrade); //disable upgrade building
|
writer.put(buttonUpgrade); //disable upgrade building
|
||||||
|
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
package engine.net.client.msg;
|
package engine.net.client.msg;
|
||||||
|
|
||||||
|
|
||||||
|
import engine.Dungeons.Dungeon;
|
||||||
import engine.net.AbstractConnection;
|
import engine.net.AbstractConnection;
|
||||||
import engine.net.AbstractNetMsg;
|
import engine.net.AbstractNetMsg;
|
||||||
import engine.net.ByteBufferReader;
|
import engine.net.ByteBufferReader;
|
||||||
@@ -108,7 +109,7 @@ public class TeleportRepledgeListMsg extends ClientNetMsg {
|
|||||||
for (int i = 0; i < 3; i++)
|
for (int i = 0; i < 3; i++)
|
||||||
writer.putInt(0);
|
writer.putInt(0);
|
||||||
|
|
||||||
writer.putInt(cities.size() + mines.size());
|
writer.putInt(cities.size() + mines.size() + 1);
|
||||||
|
|
||||||
for (City city : cities)
|
for (City city : cities)
|
||||||
City.serializeForClientMsg(city, writer);
|
City.serializeForClientMsg(city, writer);
|
||||||
@@ -116,6 +117,7 @@ public class TeleportRepledgeListMsg extends ClientNetMsg {
|
|||||||
for(Mine mine : mines)
|
for(Mine mine : mines)
|
||||||
Mine.serializeForClientMsgTeleport(mine, writer);
|
Mine.serializeForClientMsgTeleport(mine, writer);
|
||||||
|
|
||||||
|
Dungeon.serializeForClientMsgTeleport(writer);
|
||||||
}
|
}
|
||||||
|
|
||||||
public PlayerCharacter getPlayer() {
|
public PlayerCharacter getPlayer() {
|
||||||
|
|||||||
@@ -1187,13 +1187,13 @@ public abstract class AbstractCharacter extends AbstractWorldObject {
|
|||||||
|
|
||||||
public final float modifyHealth(float value, final AbstractCharacter attacker, final boolean fromCost) {
|
public final float modifyHealth(float value, final AbstractCharacter attacker, final boolean fromCost) {
|
||||||
|
|
||||||
if(attacker != null && attacker.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
//if(attacker != null && attacker.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
||||||
value *= ((PlayerCharacter)attacker).ZergMultiplier;
|
// value *= ((PlayerCharacter)attacker).ZergMultiplier;
|
||||||
} // Health modifications are modified by the ZergMechanic
|
//} // Health modifications are modified by the ZergMechanic
|
||||||
|
|
||||||
if(attacker != null && attacker.getObjectType().equals(GameObjectType.Mob) && ((Mob)attacker).getOwner() != null){
|
//if(attacker != null && attacker.getObjectType().equals(GameObjectType.Mob) && ((Mob)attacker).getOwner() != null){
|
||||||
value *= ((Mob)attacker).getOwner().ZergMultiplier;
|
// value *= ((Mob)attacker).getOwner().ZergMultiplier;
|
||||||
}// Health modifications from pets are modified by the owner's ZergMechanic
|
//}// Health modifications from pets are modified by the owner's ZergMechanic
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
@@ -1262,13 +1262,13 @@ public abstract class AbstractCharacter extends AbstractWorldObject {
|
|||||||
final boolean fromCost
|
final boolean fromCost
|
||||||
) {
|
) {
|
||||||
|
|
||||||
if(attacker != null && attacker.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
//if(attacker != null && attacker.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
||||||
value *= ((PlayerCharacter)attacker).ZergMultiplier;
|
// value *= ((PlayerCharacter)attacker).ZergMultiplier;
|
||||||
} // Health modifications are modified by the ZergMechanic
|
//} // Health modifications are modified by the ZergMechanic
|
||||||
|
|
||||||
if(attacker != null && attacker.getObjectType().equals(GameObjectType.Mob) && ((Mob)attacker).getOwner() != null){
|
//if(attacker != null && attacker.getObjectType().equals(GameObjectType.Mob) && ((Mob)attacker).getOwner() != null){
|
||||||
value *= ((Mob)attacker).getOwner().ZergMultiplier;
|
// value *= ((Mob)attacker).getOwner().ZergMultiplier;
|
||||||
}// Health modifications from pets are modified by the owner's ZergMechanic
|
//}// Health modifications from pets are modified by the owner's ZergMechanic
|
||||||
|
|
||||||
if (!this.isAlive()) {
|
if (!this.isAlive()) {
|
||||||
return 0f;
|
return 0f;
|
||||||
@@ -1309,13 +1309,13 @@ public abstract class AbstractCharacter extends AbstractWorldObject {
|
|||||||
final boolean fromCost
|
final boolean fromCost
|
||||||
) {
|
) {
|
||||||
|
|
||||||
if(attacker != null && attacker.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
//if(attacker != null && attacker.getObjectType().equals(GameObjectType.PlayerCharacter)){
|
||||||
value *= ((PlayerCharacter)attacker).ZergMultiplier;
|
// value *= ((PlayerCharacter)attacker).ZergMultiplier;
|
||||||
} // Health modifications are modified by the ZergMechanic
|
//} // Health modifications are modified by the ZergMechanic
|
||||||
|
|
||||||
if(attacker != null && attacker.getObjectType().equals(GameObjectType.Mob) && ((Mob)attacker).getOwner() != null){
|
//if(attacker != null && attacker.getObjectType().equals(GameObjectType.Mob) && ((Mob)attacker).getOwner() != null){
|
||||||
value *= ((Mob)attacker).getOwner().ZergMultiplier;
|
// value *= ((Mob)attacker).getOwner().ZergMultiplier;
|
||||||
}// Health modifications from pets are modified by the owner's ZergMechanic
|
//}// Health modifications from pets are modified by the owner's ZergMechanic
|
||||||
|
|
||||||
if (!this.isAlive()) {
|
if (!this.isAlive()) {
|
||||||
return 0f;
|
return 0f;
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ import engine.Enum.GameObjectType;
|
|||||||
import engine.Enum.GridObjectType;
|
import engine.Enum.GridObjectType;
|
||||||
import engine.InterestManagement.HeightMap;
|
import engine.InterestManagement.HeightMap;
|
||||||
import engine.InterestManagement.WorldGrid;
|
import engine.InterestManagement.WorldGrid;
|
||||||
|
import engine.gameManager.ZoneManager;
|
||||||
import engine.job.AbstractScheduleJob;
|
import engine.job.AbstractScheduleJob;
|
||||||
import engine.job.JobContainer;
|
import engine.job.JobContainer;
|
||||||
import engine.job.JobScheduler;
|
import engine.job.JobScheduler;
|
||||||
@@ -175,11 +176,11 @@ public abstract class AbstractWorldObject extends AbstractGameObject {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//set players new altitude to region lerp altitude.
|
//set players new altitude to region lerp altitude.
|
||||||
if (region != null)
|
//if (region != null)
|
||||||
if (region.center.y == region.highLerp.y)
|
// if (region.center.y == region.highLerp.y)
|
||||||
worldObject.loc = worldObject.loc.setY(region.center.y + worldObject.getAltitude());
|
// worldObject.loc = worldObject.loc.setY(region.center.y + worldObject.getAltitude());
|
||||||
else
|
// else
|
||||||
worldObject.loc = worldObject.loc.setY(region.lerpY(worldObject) + worldObject.getAltitude());
|
// worldObject.loc = worldObject.loc.setY(region.lerpY(worldObject) + worldObject.getAltitude());
|
||||||
|
|
||||||
return region;
|
return region;
|
||||||
}
|
}
|
||||||
@@ -500,8 +501,28 @@ public abstract class AbstractWorldObject extends AbstractGameObject {
|
|||||||
if (loc.x > MBServerStatics.MAX_WORLD_WIDTH || loc.z < MBServerStatics.MAX_WORLD_HEIGHT)
|
if (loc.x > MBServerStatics.MAX_WORLD_WIDTH || loc.z < MBServerStatics.MAX_WORLD_HEIGHT)
|
||||||
return;
|
return;
|
||||||
this.lastLoc = new Vector3fImmutable(this.loc);
|
this.lastLoc = new Vector3fImmutable(this.loc);
|
||||||
this.loc = loc;
|
if(AbstractCharacter.IsAbstractCharacter(this)){
|
||||||
this.loc = this.loc.setY(HeightMap.getWorldHeight(this) + this.getAltitude());
|
float y;
|
||||||
|
float worldHeight = HeightMap.getWorldHeight(loc);
|
||||||
|
Zone zone = ZoneManager.findSmallestZone(loc);
|
||||||
|
if(zone != null && zone.isPlayerCity()){
|
||||||
|
worldHeight = zone.getWorldAltitude();
|
||||||
|
}
|
||||||
|
if(this.region != null){
|
||||||
|
float regionAlt = this.region.lerpY(this);
|
||||||
|
float altitude = this.getAltitude();
|
||||||
|
y = regionAlt + altitude + worldHeight;
|
||||||
|
}else{
|
||||||
|
y = HeightMap.getWorldHeight(loc) + this.getAltitude();
|
||||||
|
}
|
||||||
|
Vector3fImmutable newLoc = new Vector3fImmutable(loc.x,y,loc.z);
|
||||||
|
this.loc = newLoc;
|
||||||
|
WorldGrid.addObject(this, newLoc.x, newLoc.z);
|
||||||
|
return;
|
||||||
|
}else{
|
||||||
|
this.loc = loc;
|
||||||
|
}
|
||||||
|
//this.loc = this.loc.setY(HeightMap.getWorldHeight(this) + this.getAltitude());
|
||||||
|
|
||||||
//lets not add mob to world grid if he is currently despawned.
|
//lets not add mob to world grid if he is currently despawned.
|
||||||
if (this.getObjectType().equals(GameObjectType.Mob) && ((Mob) this).despawned)
|
if (this.getObjectType().equals(GameObjectType.Mob) && ((Mob) this).despawned)
|
||||||
|
|||||||
@@ -2448,6 +2448,9 @@ public class CharacterItemManager {
|
|||||||
public void damageItem(Item item, int amount) {
|
public void damageItem(Item item, int amount) {
|
||||||
if (item == null || amount < 1 || amount > 5)
|
if (item == null || amount < 1 || amount > 5)
|
||||||
return;
|
return;
|
||||||
|
if(item.getItemBase().isGlass()){
|
||||||
|
amount = 1;
|
||||||
|
}
|
||||||
|
|
||||||
//verify the item is equipped by this player
|
//verify the item is equipped by this player
|
||||||
int slot = item.getEquipSlot();
|
int slot = item.getEquipSlot();
|
||||||
|
|||||||
@@ -395,8 +395,14 @@ public class City extends AbstractWorldObject {
|
|||||||
//open city, just list
|
//open city, just list
|
||||||
if (city.open && city.getTOL() != null && city.getTOL().getRank() > 4) {
|
if (city.open && city.getTOL() != null && city.getTOL().getRank() > 4) {
|
||||||
cities.add(city);
|
cities.add(city);
|
||||||
}else if(city.getGuild().getNation().equals(pc.guild.getNation())){
|
}else {
|
||||||
cities.add(city);
|
try {
|
||||||
|
if (city.getGuild().getNation().equals(pc.guild.getNation())) {
|
||||||
|
cities.add(city);
|
||||||
|
}
|
||||||
|
}catch(Exception e){
|
||||||
|
Logger.error(e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (city.isNpc == 1) {
|
} else if (city.isNpc == 1) {
|
||||||
@@ -449,7 +455,7 @@ public class City extends AbstractWorldObject {
|
|||||||
|
|
||||||
if (!BuildingManager.IsPlayerHostile(city.getTOL(), pc))
|
if (!BuildingManager.IsPlayerHostile(city.getTOL(), pc))
|
||||||
cities.add(city); //verify nation or guild is same
|
cities.add(city); //verify nation or guild is same
|
||||||
} else if (Guild.sameNationExcludeErrant(city.getGuild(), pcG))
|
} else if (city.open && Guild.sameNationExcludeErrant(city.getGuild(), pcG))
|
||||||
cities.add(city);
|
cities.add(city);
|
||||||
|
|
||||||
} else if (city.isNpc == 1) {
|
} else if (city.isNpc == 1) {
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ import engine.net.Dispatch;
|
|||||||
import engine.net.DispatchMessage;
|
import engine.net.DispatchMessage;
|
||||||
import engine.net.client.msg.CityDataMsg;
|
import engine.net.client.msg.CityDataMsg;
|
||||||
import engine.net.client.msg.ErrorPopupMsg;
|
import engine.net.client.msg.ErrorPopupMsg;
|
||||||
|
import engine.net.client.msg.VendorDialogMsg;
|
||||||
import org.joda.time.DateTime;
|
import org.joda.time.DateTime;
|
||||||
import org.pmw.tinylog.Logger;
|
import org.pmw.tinylog.Logger;
|
||||||
|
|
||||||
@@ -323,6 +324,12 @@ public class Contract extends AbstractGameObject {
|
|||||||
pc.charItemManager.updateInventory();
|
pc.charItemManager.updateInventory();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static boolean isClassTrainer(int id){
|
||||||
|
if(id >= 5 && id <= 30)
|
||||||
|
return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
public static VendorDialog HandleBaneCommanderOptions(int optionId, NPC npc, PlayerCharacter pc){
|
public static VendorDialog HandleBaneCommanderOptions(int optionId, NPC npc, PlayerCharacter pc){
|
||||||
pc.setLastNPCDialog(npc);
|
pc.setLastNPCDialog(npc);
|
||||||
VendorDialog vd = new VendorDialog(VendorDialog.getHostileVendorDialog().getDialogType(),VendorDialog.getHostileVendorDialog().getIntro(),-1);//VendorDialog.getHostileVendorDialog();
|
VendorDialog vd = new VendorDialog(VendorDialog.getHostileVendorDialog().getDialogType(),VendorDialog.getHostileVendorDialog().getIntro(),-1);//VendorDialog.getHostileVendorDialog();
|
||||||
@@ -580,6 +587,19 @@ public class Contract extends AbstractGameObject {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(this.getObjectUUID() == 1502050){
|
||||||
|
for(MobEquipment me : this.sellInventory){
|
||||||
|
switch(me.getItemBase().getUUID()) {
|
||||||
|
case 971070:
|
||||||
|
me.magicValue = 3000000;
|
||||||
|
break;
|
||||||
|
case 971012:
|
||||||
|
me.magicValue = 1000000;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if(this.getObjectUUID() == 1202){ //rune merchant
|
if(this.getObjectUUID() == 1202){ //rune merchant
|
||||||
for(MobEquipment me : this.sellInventory){
|
for(MobEquipment me : this.sellInventory){
|
||||||
switch(me.getItemBase().getUUID()){
|
switch(me.getItemBase().getUUID()){
|
||||||
@@ -588,52 +608,62 @@ public class Contract extends AbstractGameObject {
|
|||||||
case 250019:
|
case 250019:
|
||||||
case 250028:
|
case 250028:
|
||||||
case 250037:
|
case 250037:
|
||||||
me.magicValue = 3000000;
|
me.magicValue = 1000000;
|
||||||
break;
|
break;
|
||||||
case 250002: //10 stats
|
case 250002: //10 stats
|
||||||
case 250011:
|
case 250011:
|
||||||
case 250020:
|
case 250020:
|
||||||
case 250029:
|
case 250029:
|
||||||
case 250038:
|
case 250038:
|
||||||
me.magicValue = 4000000;
|
me.magicValue = 2000000;
|
||||||
break;
|
break;
|
||||||
case 250003: //15 stats
|
case 250003: //15 stats
|
||||||
case 250012:
|
case 250012:
|
||||||
case 250021:
|
case 250021:
|
||||||
case 250030:
|
case 250030:
|
||||||
case 250039:
|
case 250039:
|
||||||
me.magicValue = 5000000;
|
me.magicValue = 3000000;
|
||||||
break;
|
break;
|
||||||
case 250004: //20 stats
|
case 250004: //20 stats
|
||||||
case 250013:
|
case 250013:
|
||||||
case 250022:
|
case 250022:
|
||||||
case 250031:
|
case 250031:
|
||||||
case 250040:
|
case 250040:
|
||||||
me.magicValue = 6000000;
|
me.magicValue = 4000000;
|
||||||
break;
|
break;
|
||||||
case 250005: //25 stats
|
case 250005: //25 stats
|
||||||
case 250014:
|
case 250014:
|
||||||
case 250023:
|
case 250023:
|
||||||
case 250032:
|
case 250032:
|
||||||
case 250041:
|
case 250041:
|
||||||
me.magicValue = 7000000;
|
me.magicValue = 5000000;
|
||||||
break;
|
break;
|
||||||
case 250006: //30 stats
|
case 250006: //30 stats
|
||||||
case 250015:
|
case 250015:
|
||||||
case 250024:
|
case 250024:
|
||||||
case 250033:
|
case 250033:
|
||||||
case 250042:
|
case 250042:
|
||||||
me.magicValue = 8000000;
|
me.magicValue = 6000000;
|
||||||
break;
|
break;
|
||||||
case 250007: //35 stats
|
case 250007: //35 stats
|
||||||
case 250016:
|
case 250016:
|
||||||
case 250025:
|
case 250025:
|
||||||
case 250034:
|
case 250034:
|
||||||
case 250043:
|
case 250043:
|
||||||
me.magicValue = 9000000;
|
me.magicValue = 7000000;
|
||||||
|
break;
|
||||||
|
case 250008: //40 stats
|
||||||
|
case 250017:
|
||||||
|
case 250026:
|
||||||
|
case 250035:
|
||||||
|
case 250044:
|
||||||
|
me.magicValue = 10000000;
|
||||||
|
break;
|
||||||
|
case 252127:
|
||||||
|
me.magicValue = 5000000;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
me.magicValue = 10000000;
|
me.magicValue = 1000000;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ import static engine.gameManager.LootManager.LOOTMANAGER;
|
|||||||
public class Experience {
|
public class Experience {
|
||||||
|
|
||||||
private static final TreeMap<Integer, Integer> ExpToLevel;
|
private static final TreeMap<Integer, Integer> ExpToLevel;
|
||||||
private static final int[] LevelToExp = {Integer.MIN_VALUE, // Pad
|
public static final int[] LevelToExp = {Integer.MIN_VALUE, // Pad
|
||||||
// everything
|
// everything
|
||||||
// over 1
|
// over 1
|
||||||
|
|
||||||
@@ -121,6 +121,8 @@ public class Experience {
|
|||||||
190585732, // Level 77
|
190585732, // Level 77
|
||||||
201714185, // Level 78
|
201714185, // Level 78
|
||||||
213319687, // Level 79
|
213319687, // Level 79
|
||||||
|
|
||||||
|
// R8
|
||||||
225415457, // Level 80
|
225415457, // Level 80
|
||||||
238014819 // Level 81
|
238014819 // Level 81
|
||||||
|
|
||||||
@@ -302,7 +304,7 @@ public class Experience {
|
|||||||
case Cyan:
|
case Cyan:
|
||||||
return 0.9;
|
return 0.9;
|
||||||
case Green:
|
case Green:
|
||||||
return 0.7;
|
return 0.8;
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@@ -352,6 +354,14 @@ public class Experience {
|
|||||||
if(killer.pvpKills.contains(mob.getObjectUUID()))
|
if(killer.pvpKills.contains(mob.getObjectUUID()))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if(true){
|
||||||
|
if(killer.combatStats == null)
|
||||||
|
killer.combatStats = new PlayerCombatStats(killer);
|
||||||
|
|
||||||
|
killer.combatStats.grantExperience(mob,g);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
double grantedExperience = 0.0;
|
double grantedExperience = 0.0;
|
||||||
|
|
||||||
if (g != null) { // Do group EXP stuff
|
if (g != null) { // Do group EXP stuff
|
||||||
@@ -409,7 +419,6 @@ public class Experience {
|
|||||||
|
|
||||||
grantedExperience = (double) LOOTMANAGER.NORMAL_EXP_RATE * maxXPPerKill(playerCharacter.getLevel());
|
grantedExperience = (double) LOOTMANAGER.NORMAL_EXP_RATE * maxXPPerKill(playerCharacter.getLevel());
|
||||||
|
|
||||||
grantedExperience *= (1/ giveEXPTo.size()+0.9);
|
|
||||||
// Adjust XP for Mob Level
|
// Adjust XP for Mob Level
|
||||||
|
|
||||||
grantedExperience *= getConMod(playerCharacter, mob);
|
grantedExperience *= getConMod(playerCharacter, mob);
|
||||||
@@ -446,6 +455,9 @@ public class Experience {
|
|||||||
if (grantedExperience == 0)
|
if (grantedExperience == 0)
|
||||||
grantedExperience = 1;
|
grantedExperience = 1;
|
||||||
|
|
||||||
|
//scaling
|
||||||
|
grantedExperience *= (1 / giveEXPTo.size()+0.9);
|
||||||
|
|
||||||
// Grant the player the EXP
|
// Grant the player the EXP
|
||||||
playerCharacter.grantXP((int) Math.floor(grantedExperience));
|
playerCharacter.grantXP((int) Math.floor(grantedExperience));
|
||||||
}
|
}
|
||||||
@@ -469,9 +481,13 @@ public class Experience {
|
|||||||
grantedExperience *= LOOTMANAGER.HOTZONE_EXP_RATE;
|
grantedExperience *= LOOTMANAGER.HOTZONE_EXP_RATE;
|
||||||
|
|
||||||
// Errant penalty
|
// Errant penalty
|
||||||
if (grantedExperience != 1)
|
if (grantedExperience != 1) {
|
||||||
if (killer.getGuild().isEmptyGuild())
|
if (killer.getGuild().isEmptyGuild())
|
||||||
grantedExperience *= .6;
|
grantedExperience *= 0.6f;
|
||||||
|
}
|
||||||
|
|
||||||
|
//bonus for no group
|
||||||
|
grantedExperience *= 1.9f;
|
||||||
|
|
||||||
// Grant XP
|
// Grant XP
|
||||||
killer.grantXP((int) Math.floor(grantedExperience));
|
killer.grantXP((int) Math.floor(grantedExperience));
|
||||||
|
|||||||
@@ -818,15 +818,19 @@ public class Item extends AbstractWorldObject {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void stripCastableEnchants(){
|
public void stripCastableEnchants(){
|
||||||
ArrayList<Effect> ToRemove = new ArrayList<>();
|
try {
|
||||||
for(Effect eff : this.effects.values()){
|
ArrayList<Effect> ToRemove = new ArrayList<>();
|
||||||
if(eff.getJobContainer() != null && !eff.getJobContainer().noTimer()){
|
for (Effect eff : this.effects.values()) {
|
||||||
eff.endEffectNoPower();
|
if (eff.getJobContainer() != null && !eff.getJobContainer().noTimer()) {
|
||||||
eff.getJobContainer().cancelJob();
|
eff.endEffectNoPower();
|
||||||
ToRemove.add(eff);
|
eff.getJobContainer().cancelJob();
|
||||||
|
ToRemove.add(eff);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
this.effects.values().removeAll(ToRemove);
|
||||||
|
}catch(Exception ignored){
|
||||||
|
|
||||||
}
|
}
|
||||||
this.effects.values().removeAll(ToRemove);
|
|
||||||
}
|
}
|
||||||
//Only to be used for trading
|
//Only to be used for trading
|
||||||
public void setOwnerID(int ownerID) {
|
public void setOwnerID(int ownerID) {
|
||||||
|
|||||||
@@ -259,51 +259,53 @@ public class ItemBase {
|
|||||||
case 250019:
|
case 250019:
|
||||||
case 250028:
|
case 250028:
|
||||||
case 250037:
|
case 250037:
|
||||||
return 3000000;
|
return 1000000;
|
||||||
case 250002: //10 stats
|
case 250002: //10 stats
|
||||||
case 250011:
|
case 250011:
|
||||||
case 250020:
|
case 250020:
|
||||||
case 250029:
|
case 250029:
|
||||||
case 250038:
|
case 250038:
|
||||||
return 4000000;
|
return 2000000;
|
||||||
case 250003: //15 stats
|
case 250003: //15 stats
|
||||||
case 250012:
|
case 250012:
|
||||||
case 250021:
|
case 250021:
|
||||||
case 250030:
|
case 250030:
|
||||||
case 250039:
|
case 250039:
|
||||||
return 5000000;
|
return 3000000;
|
||||||
case 250004: //20 stats
|
case 250004: //20 stats
|
||||||
case 250013:
|
case 250013:
|
||||||
case 250022:
|
case 250022:
|
||||||
case 250031:
|
case 250031:
|
||||||
case 250040:
|
case 250040:
|
||||||
return 6000000;
|
return 4000000;
|
||||||
case 250005: //25 stats
|
case 250005: //25 stats
|
||||||
case 250014:
|
case 250014:
|
||||||
case 250023:
|
case 250023:
|
||||||
case 250032:
|
case 250032:
|
||||||
case 250041:
|
case 250041:
|
||||||
return 7000000;
|
return 5000000;
|
||||||
case 250006: //30 stats
|
case 250006: //30 stats
|
||||||
case 250015:
|
case 250015:
|
||||||
case 250024:
|
case 250024:
|
||||||
case 250033:
|
case 250033:
|
||||||
case 250042:
|
case 250042:
|
||||||
return 8000000;
|
return 6000000;
|
||||||
case 250007: //35 stats
|
case 250007: //35 stats
|
||||||
case 250016:
|
case 250016:
|
||||||
case 250025:
|
case 250025:
|
||||||
case 250034:
|
case 250034:
|
||||||
case 250043:
|
case 250043:
|
||||||
return 9000000;
|
return 7000000;
|
||||||
case 250008: //40 stats
|
case 250008: //40 stats
|
||||||
case 250017:
|
case 250017:
|
||||||
case 250026:
|
case 250026:
|
||||||
case 250035:
|
case 250035:
|
||||||
case 250044:
|
case 250044:
|
||||||
return 10000000;
|
return 10000000;
|
||||||
|
case 252127:
|
||||||
|
return 5000000;
|
||||||
}
|
}
|
||||||
return 10000000;
|
return 1000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@@ -705,9 +705,13 @@ public class ItemFactory {
|
|||||||
|
|
||||||
int rollPrefix = ThreadLocalRandom.current().nextInt(1, 100 + 1);
|
int rollPrefix = ThreadLocalRandom.current().nextInt(1, 100 + 1);
|
||||||
|
|
||||||
if (rollPrefix < 80) {
|
if (rollPrefix < vendor.getLevel() + 30) {
|
||||||
|
|
||||||
int randomPrefix = TableRoll(vendor.getLevel());
|
int randomPrefix = TableRoll(vendor.getLevel());
|
||||||
|
if(vendor.contract.getName().contains("Heavy") || vendor.contract.getName().contains("Medium") || vendor.contract.getName().contains("Leather"))
|
||||||
|
randomPrefix += vendor.level * 0.5f;
|
||||||
|
if(randomPrefix > 320)
|
||||||
|
randomPrefix = 320;
|
||||||
prefixEntry = ModTableEntry.rollTable(prefixTypeTable.modTableID, randomPrefix);
|
prefixEntry = ModTableEntry.rollTable(prefixTypeTable.modTableID, randomPrefix);
|
||||||
|
|
||||||
if (prefixEntry != null)
|
if (prefixEntry != null)
|
||||||
@@ -720,9 +724,13 @@ public class ItemFactory {
|
|||||||
// Always have at least one mod on a magic rolled item.
|
// Always have at least one mod on a magic rolled item.
|
||||||
// Suffix will be our backup plan.
|
// Suffix will be our backup plan.
|
||||||
|
|
||||||
if (rollSuffix < 80 || prefixEntry == null) {
|
if (rollSuffix < vendor.getLevel() + 30) {
|
||||||
|
|
||||||
int randomSuffix = TableRoll(vendor.getLevel());
|
int randomSuffix = TableRoll(vendor.getLevel());
|
||||||
|
if(vendor.contract.getName().contains("Heavy") || vendor.contract.getName().contains("Medium") || vendor.contract.getName().contains("Leather"))
|
||||||
|
randomSuffix += vendor.level * 0.25f;
|
||||||
|
if(randomSuffix > 320)
|
||||||
|
randomSuffix = 320;
|
||||||
suffixEntry = ModTableEntry.rollTable(suffixTypeTable.modTableID, randomSuffix);
|
suffixEntry = ModTableEntry.rollTable(suffixTypeTable.modTableID, randomSuffix);
|
||||||
|
|
||||||
if (suffixEntry != null)
|
if (suffixEntry != null)
|
||||||
@@ -776,31 +784,31 @@ public class ItemFactory {
|
|||||||
|
|
||||||
public static int TableRoll(int vendorLevel) {
|
public static int TableRoll(int vendorLevel) {
|
||||||
// Calculate min and max based on mobLevel
|
// Calculate min and max based on mobLevel
|
||||||
int min = 60;
|
int min = 100;
|
||||||
int max = 120;
|
int max = 160;
|
||||||
switch(vendorLevel){
|
switch(vendorLevel){
|
||||||
case 20:
|
case 20:
|
||||||
min = 70;
|
min = 120;
|
||||||
max = 140;
|
|
||||||
break;
|
|
||||||
case 30:
|
|
||||||
min = 80;
|
|
||||||
max = 160;
|
|
||||||
break;
|
|
||||||
case 40:
|
|
||||||
min = 90;
|
|
||||||
max = 180;
|
max = 180;
|
||||||
break;
|
break;
|
||||||
case 50:
|
case 30:
|
||||||
min = 100;
|
min = 140;
|
||||||
max = 200;
|
max = 200;
|
||||||
break;
|
break;
|
||||||
|
case 40:
|
||||||
|
min = 160;
|
||||||
|
max = 220;
|
||||||
|
break;
|
||||||
|
case 50:
|
||||||
|
min = 180;
|
||||||
|
max = 240;
|
||||||
|
break;
|
||||||
case 60:
|
case 60:
|
||||||
min = 175;
|
min = 200;
|
||||||
max = 260;
|
max = 260;
|
||||||
break;
|
break;
|
||||||
case 70:
|
case 70:
|
||||||
min = 220;
|
min = 240;
|
||||||
max = 320;
|
max = 320;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -65,6 +65,7 @@ public class Mine extends AbstractGameObject {
|
|||||||
public boolean isStronghold = false;
|
public boolean isStronghold = false;
|
||||||
public ArrayList<Mob> strongholdMobs;
|
public ArrayList<Mob> strongholdMobs;
|
||||||
public HashMap<Integer,Integer> oldBuildings;
|
public HashMap<Integer,Integer> oldBuildings;
|
||||||
|
public HashMap<Integer, Long> mineAttendees = new HashMap<>();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ResultSet Constructor
|
* ResultSet Constructor
|
||||||
@@ -622,7 +623,7 @@ public class Mine extends AbstractGameObject {
|
|||||||
|
|
||||||
// Gather current list of players within the zone bounds
|
// Gather current list of players within the zone bounds
|
||||||
|
|
||||||
HashSet<AbstractWorldObject> currentPlayers = WorldGrid.getObjectsInRangePartial(tower.loc, Enum.CityBoundsType.GRID.extents, MBServerStatics.MASK_PLAYER);
|
HashSet<AbstractWorldObject> currentPlayers = WorldGrid.getObjectsInRangePartial(tower.loc, MBServerStatics.CHARACTER_LOAD_RANGE * 3, MBServerStatics.MASK_PLAYER);
|
||||||
HashMap<Guild,ArrayList<PlayerCharacter>> charactersByNation = new HashMap<>();
|
HashMap<Guild,ArrayList<PlayerCharacter>> charactersByNation = new HashMap<>();
|
||||||
ArrayList<Guild> updatedNations = new ArrayList<>();
|
ArrayList<Guild> updatedNations = new ArrayList<>();
|
||||||
for (AbstractWorldObject playerObject : currentPlayers) {
|
for (AbstractWorldObject playerObject : currentPlayers) {
|
||||||
@@ -637,6 +638,7 @@ public class Mine extends AbstractGameObject {
|
|||||||
|
|
||||||
if(!this._playerMemory.contains(player.getObjectUUID())){
|
if(!this._playerMemory.contains(player.getObjectUUID())){
|
||||||
this._playerMemory.add(player.getObjectUUID());
|
this._playerMemory.add(player.getObjectUUID());
|
||||||
|
ChatManager.chatSystemInfo(player,"You Have Entered an Active Mine Area");
|
||||||
}
|
}
|
||||||
Guild nation = player.guild.getNation();
|
Guild nation = player.guild.getNation();
|
||||||
if(charactersByNation.containsKey(nation)){
|
if(charactersByNation.containsKey(nation)){
|
||||||
@@ -655,6 +657,19 @@ public class Mine extends AbstractGameObject {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for(Integer id : this.mineAttendees.keySet()){
|
||||||
|
PlayerCharacter attendee = PlayerCharacter.getPlayerCharacter(id);
|
||||||
|
if(attendee == null)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if(charactersByNation.containsKey(attendee.guild.getNation())){
|
||||||
|
if(!charactersByNation.get(attendee.guild.getNation()).contains(attendee)){
|
||||||
|
charactersByNation.get(attendee.guild.getNation()).add(attendee);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
for(Guild nation : updatedNations){
|
for(Guild nation : updatedNations){
|
||||||
float multiplier = ZergManager.getCurrentMultiplier(charactersByNation.get(nation).size(),this.capSize);
|
float multiplier = ZergManager.getCurrentMultiplier(charactersByNation.get(nation).size(),this.capSize);
|
||||||
for(PlayerCharacter player : charactersByNation.get(nation)){
|
for(PlayerCharacter player : charactersByNation.get(nation)){
|
||||||
@@ -676,18 +691,28 @@ public class Mine extends AbstractGameObject {
|
|||||||
if(tower == null)
|
if(tower == null)
|
||||||
return;
|
return;
|
||||||
ArrayList<Integer>toRemove = new ArrayList<>();
|
ArrayList<Integer>toRemove = new ArrayList<>();
|
||||||
HashSet<AbstractWorldObject> currentPlayers = WorldGrid.getObjectsInRangePartial(tower.loc, Enum.CityBoundsType.GRID.extents, MBServerStatics.MASK_PLAYER);
|
HashSet<AbstractWorldObject> currentPlayers = WorldGrid.getObjectsInRangePartial(tower.loc, MBServerStatics.CHARACTER_LOAD_RANGE * 3, MBServerStatics.MASK_PLAYER);
|
||||||
for(Integer id : currentMemory){
|
for(Integer id : currentMemory){
|
||||||
PlayerCharacter pc = PlayerCharacter.getPlayerCharacter(id);
|
PlayerCharacter pc = PlayerCharacter.getPlayerCharacter(id);
|
||||||
if(currentPlayers.contains(pc) == false){
|
if(!currentPlayers.contains(pc)){
|
||||||
toRemove.add(id);
|
if(this.mineAttendees.containsKey(id)){
|
||||||
|
long timeGone = System.currentTimeMillis() - this.mineAttendees.get(id).longValue();
|
||||||
|
if (timeGone > 180000L) { // 3 minutes
|
||||||
|
toRemove.add(id); // Mark for removal
|
||||||
|
}
|
||||||
|
}
|
||||||
pc.ZergMultiplier = 1.0f;
|
pc.ZergMultiplier = 1.0f;
|
||||||
|
} else {
|
||||||
|
this.mineAttendees.put(id,System.currentTimeMillis());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove players from city memory
|
// Remove players from city memory
|
||||||
|
|
||||||
_playerMemory.removeAll(toRemove);
|
_playerMemory.removeAll(toRemove);
|
||||||
|
for(int id : toRemove){
|
||||||
|
this.mineAttendees.remove(id);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
public static Building getTower(Mine mine){
|
public static Building getTower(Mine mine){
|
||||||
Building tower = BuildingManager.getBuildingFromCache(mine.buildingID);
|
Building tower = BuildingManager.getBuildingFromCache(mine.buildingID);
|
||||||
|
|||||||
@@ -111,6 +111,8 @@ public class Mob extends AbstractIntelligenceAgent {
|
|||||||
public boolean StrongholdEpic = false;
|
public boolean StrongholdEpic = false;
|
||||||
public boolean isDropper = false;
|
public boolean isDropper = false;
|
||||||
|
|
||||||
|
public HashMap<PlayerCharacter,Float> hate_values;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* No Id Constructor
|
* No Id Constructor
|
||||||
@@ -620,6 +622,7 @@ public class Mob extends AbstractIntelligenceAgent {
|
|||||||
DbManager.addToCache(mob);
|
DbManager.addToCache(mob);
|
||||||
mob.setPet(owner, true);
|
mob.setPet(owner, true);
|
||||||
mob.setWalkMode(false);
|
mob.setWalkMode(false);
|
||||||
|
mob.level = level;
|
||||||
mob.runAfterLoad();
|
mob.runAfterLoad();
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
@@ -628,8 +631,12 @@ public class Mob extends AbstractIntelligenceAgent {
|
|||||||
createLock.writeLock().unlock();
|
createLock.writeLock().unlock();
|
||||||
}
|
}
|
||||||
parent.zoneMobSet.add(mob);
|
parent.zoneMobSet.add(mob);
|
||||||
mob.level = level;
|
// mob.level = level;
|
||||||
mob.healthMax = mob.getMobBase().getHealthMax() * (mob.level * 0.5f);
|
float healthMax = mob.getMobBase().getHealthMax();
|
||||||
|
if(mob.bonuses != null){
|
||||||
|
healthMax += mob.bonuses.getFloat(ModType.HealthFull,SourceType.None);
|
||||||
|
}
|
||||||
|
mob.healthMax = healthMax;
|
||||||
mob.health.set(mob.healthMax);
|
mob.health.set(mob.healthMax);
|
||||||
return mob;
|
return mob;
|
||||||
}
|
}
|
||||||
@@ -1445,6 +1452,7 @@ public class Mob extends AbstractIntelligenceAgent {
|
|||||||
this.stopPatrolTime = 0;
|
this.stopPatrolTime = 0;
|
||||||
this.lastPatrolPointIndex = 0;
|
this.lastPatrolPointIndex = 0;
|
||||||
InterestManager.setObjectDirty(this);
|
InterestManager.setObjectDirty(this);
|
||||||
|
this.hate_values = new HashMap<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void despawn() {
|
public void despawn() {
|
||||||
|
|||||||
@@ -308,6 +308,10 @@ public class MobBase extends AbstractGameObject {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void applyMobbaseEffects(Mob mob){
|
public static void applyMobbaseEffects(Mob mob){
|
||||||
|
if(mob.getMobBaseID() == 12008)
|
||||||
|
mob.level = 65;
|
||||||
|
else if(mob.getMobBaseID() == 12019)
|
||||||
|
mob.level = 80;
|
||||||
for(MobBaseEffects mbe : mob.mobBase.mobbaseEffects){
|
for(MobBaseEffects mbe : mob.mobBase.mobbaseEffects){
|
||||||
if(mob.level >= mbe.getReqLvl()){
|
if(mob.level >= mbe.getReqLvl()){
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -274,14 +274,14 @@ public class MobEquipment extends AbstractGameObject {
|
|||||||
EffectsBase effect = PowersManager.getEffectByToken(token);
|
EffectsBase effect = PowersManager.getEffectByToken(token);
|
||||||
|
|
||||||
AbstractPowerAction apa = PowersManager.getPowerActionByIDString(effect.getIDString());
|
AbstractPowerAction apa = PowersManager.getPowerActionByIDString(effect.getIDString());
|
||||||
if (apa.getEffectsBase() != null)
|
if (apa != null && apa.getEffectsBase() != null)
|
||||||
if (apa.getEffectsBase().getValue() > 0) {
|
if (apa.getEffectsBase().getValue() > 0) {
|
||||||
//System.out.println(apa.getEffectsBase().getValue());
|
//System.out.println(apa.getEffectsBase().getValue());
|
||||||
value += apa.getEffectsBase().getValue();
|
value += apa.getEffectsBase().getValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (apa.getEffectsBase2() != null)
|
if (apa != null && apa.getEffectsBase2() != null)
|
||||||
value += apa.getEffectsBase2().getValue();
|
value += apa.getEffectsBase2().getValue();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -876,6 +876,11 @@ public class NPC extends AbstractCharacter {
|
|||||||
// zone collection
|
// zone collection
|
||||||
|
|
||||||
this.parentZone = ZoneManager.getZoneByUUID(this.parentZoneUUID);
|
this.parentZone = ZoneManager.getZoneByUUID(this.parentZoneUUID);
|
||||||
|
if(this.parentZone == null) {
|
||||||
|
Logger.error("PARENT ZONE NOT IDENTIFIED FOR NPC : " + this.getObjectUUID());
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
this.parentZone.zoneNPCSet.remove(this);
|
this.parentZone.zoneNPCSet.remove(this);
|
||||||
this.parentZone.zoneNPCSet.add(this);
|
this.parentZone.zoneNPCSet.add(this);
|
||||||
|
|
||||||
|
|||||||
@@ -41,11 +41,11 @@ import engine.server.MBServerStatics;
|
|||||||
import engine.server.login.LoginServer;
|
import engine.server.login.LoginServer;
|
||||||
import engine.server.login.LoginServerMsgHandler;
|
import engine.server.login.LoginServerMsgHandler;
|
||||||
import engine.server.world.WorldServer;
|
import engine.server.world.WorldServer;
|
||||||
|
import engine.util.KeyCloneAudit;
|
||||||
import engine.util.MiscUtils;
|
import engine.util.MiscUtils;
|
||||||
import org.joda.time.DateTime;
|
import org.joda.time.DateTime;
|
||||||
import org.pmw.tinylog.Logger;
|
import org.pmw.tinylog.Logger;
|
||||||
|
|
||||||
import javax.swing.*;
|
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
@@ -183,6 +183,8 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
|
|
||||||
public PlayerCombatStats combatStats;
|
public PlayerCombatStats combatStats;
|
||||||
|
|
||||||
|
public Integer selectedUUID = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* No Id Constructor
|
* No Id Constructor
|
||||||
*/
|
*/
|
||||||
@@ -1534,25 +1536,48 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
return true;
|
return true;
|
||||||
Zone zone = ZoneManager.findSmallestZone(breather.getLoc());
|
Zone zone = ZoneManager.findSmallestZone(breather.getLoc());
|
||||||
|
|
||||||
|
if(zone == null)
|
||||||
|
return true;
|
||||||
|
|
||||||
|
if(zone.isPlayerCity())
|
||||||
|
return true;
|
||||||
|
|
||||||
|
float seaLevel = zone.getSeaLevel();
|
||||||
|
|
||||||
if (zone.getSeaLevel() != 0) {
|
if (zone.getSeaLevel() != 0) {
|
||||||
|
Zone parent = zone.getParent();
|
||||||
|
if(parent != null && parent.isMacroZone()){
|
||||||
|
float parentLevel = parent.getSeaLevel();
|
||||||
|
seaLevel -= parentLevel;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(seaLevel == 0)
|
||||||
|
return true;
|
||||||
|
|
||||||
float localAltitude = breather.getLoc().y;
|
float localAltitude = breather.getLoc().y;
|
||||||
|
float characterHeight = breather.characterHeight;
|
||||||
|
|
||||||
|
if (localAltitude + characterHeight < seaLevel - 2) {
|
||||||
if (localAltitude + breather.characterHeight < zone.getSeaLevel() - 2)
|
//ChatManager.chatSystemInfo(breather, "YOU CANNOT BREATHE!");
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
if (breather.isMoving()) {
|
if (breather.isMoving()) {
|
||||||
if (localAltitude + breather.characterHeight < zone.getSeaLevel())
|
if (localAltitude + breather.characterHeight < zone.getSeaLevel()) {
|
||||||
|
//ChatManager.chatSystemInfo(breather, "YOU CANNOT BREATHE!");
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (breather.getLoc().y + breather.characterHeight < -2)
|
if (breather.getLoc().y + breather.characterHeight < -2) {
|
||||||
|
//ChatManager.chatSystemInfo(breather, "YOU CANNOT BREATHE!");
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (breather.isMoving()) {
|
if (breather.isMoving()) {
|
||||||
if (breather.getLoc().y + breather.characterHeight < 0)
|
if (breather.getLoc().y + breather.characterHeight < 0) {
|
||||||
|
//ChatManager.chatSystemInfo(breather, "YOU CANNOT BREATHE!");
|
||||||
return false;
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1845,6 +1870,11 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
message += " was killed by " + att.getFirstName();
|
message += " was killed by " + att.getFirstName();
|
||||||
if (att.guild != null && (!(att.guild.getName().equals("Errant"))))
|
if (att.guild != null && (!(att.guild.getName().equals("Errant"))))
|
||||||
message += " of " + att.guild.getName();
|
message += " of " + att.guild.getName();
|
||||||
|
|
||||||
|
Zone killZone = ZoneManager.findSmallestZone(this.loc);
|
||||||
|
if(killZone != null){
|
||||||
|
message += " in " + killZone.getName();
|
||||||
|
}
|
||||||
message += "!";
|
message += "!";
|
||||||
|
|
||||||
|
|
||||||
@@ -1964,8 +1994,7 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
this.altitude = (float) 0;
|
this.altitude = (float) 0;
|
||||||
|
|
||||||
// Release Mine Claims
|
// Release Mine Claims
|
||||||
|
//Mine.releaseMineClaims(this);
|
||||||
Mine.releaseMineClaims(this);
|
|
||||||
|
|
||||||
this.getCharItemManager().closeTradeWindow();
|
this.getCharItemManager().closeTradeWindow();
|
||||||
|
|
||||||
@@ -2929,6 +2958,7 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void grantXP(int xp) {
|
public synchronized void grantXP(int xp) {
|
||||||
|
xp *= LootManager.NORMAL_EXP_RATE;
|
||||||
int groupSize = 1;
|
int groupSize = 1;
|
||||||
if(GroupManager.getGroup(this)!= null)
|
if(GroupManager.getGroup(this)!= null)
|
||||||
groupSize = GroupManager.getGroup(this).members.size();
|
groupSize = GroupManager.getGroup(this).members.size();
|
||||||
@@ -4705,7 +4735,7 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
ModType modType = ModType.GetModType(type);
|
ModType modType = ModType.GetModType(type);
|
||||||
|
|
||||||
// must be allowed to use this passive
|
// must be allowed to use this passive
|
||||||
if (!this.bonuses.getBool(modType, SourceType.None))
|
if (!this.bonuses.getBool(modType, SourceType.None) && this.getRaceID() != 1999)
|
||||||
return 0f;
|
return 0f;
|
||||||
|
|
||||||
// must not be stunned
|
// must not be stunned
|
||||||
@@ -4754,13 +4784,13 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
if(this.bonuses != null)
|
if(this.bonuses != null)
|
||||||
blockChance *= 1 + this.bonuses.getFloatPercentAll(ModType.Block, SourceType.None);
|
blockChance *= 1 + this.bonuses.getFloatPercentAll(ModType.Block, SourceType.None);
|
||||||
return blockChance;
|
return blockChance;
|
||||||
|
|
||||||
case "Parry":
|
case "Parry":
|
||||||
if(!fromCombat)
|
if(!fromCombat)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if(mainHand == null && this.getRaceID() != 1999) // saetors can always parry using their horns
|
if(mainHand == null && this.getRaceID() != 1999) // saetors can always parry using their horns
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
int parryBonus = 0;
|
int parryBonus = 0;
|
||||||
|
|
||||||
if(mainHand != null && offHand != null && !offHand.getItemBase().isShield())
|
if(mainHand != null && offHand != null && !offHand.getItemBase().isShield())
|
||||||
@@ -5078,6 +5108,12 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
|
|
||||||
Zone zone = ZoneManager.findSmallestZone(this.getLoc());
|
Zone zone = ZoneManager.findSmallestZone(this.getLoc());
|
||||||
|
|
||||||
|
if(zone == null)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if(zone.isPlayerCity())
|
||||||
|
return false;
|
||||||
|
|
||||||
if (zone.getSeaLevel() != 0) {
|
if (zone.getSeaLevel() != 0) {
|
||||||
|
|
||||||
float localAltitude = this.getLoc().y + this.centerHeight;
|
float localAltitude = this.getLoc().y + this.centerHeight;
|
||||||
@@ -5115,47 +5151,21 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
if(!newSystem)
|
if(!newSystem)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
this.updateLocation();
|
|
||||||
this.updateMovementState();
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
if (this.updateLock.writeLock().tryLock()) {
|
if (this.updateLock.writeLock().tryLock()) {
|
||||||
try {
|
try {
|
||||||
//if (!this.timestamps.contains("STAMHEALTICK")) {
|
|
||||||
// this.timestamps.put("STAMHEALTICK", System.currentTimeMillis());
|
|
||||||
//}
|
|
||||||
//if (this.containsEffect(441156455)) {
|
|
||||||
// long length = System.currentTimeMillis() - this.timestamps.get("STAMHEALTICK").longValue();
|
|
||||||
// if (length > 10000 ) {
|
|
||||||
// float stamIncrease = 6.5f;
|
|
||||||
// if (this.stamina.get() + stamIncrease > this.staminaMax)
|
|
||||||
// this.stamina.compareAndSet(this.stamina.get(), this.staminaMax);
|
|
||||||
// else
|
|
||||||
// this.stamina.compareAndSet(this.stamina.get(), this.stamina.get() + stamIncrease);
|
|
||||||
// this.timestamps.put("STAMHEALTICK", System.currentTimeMillis());
|
|
||||||
// ChatManager.chatSystemInfo(this, "Healed 7 Stamina");
|
|
||||||
// }
|
|
||||||
//} else {
|
|
||||||
// this.timestamps.put("STAMHEALTICK", System.currentTimeMillis());
|
|
||||||
//}
|
|
||||||
|
|
||||||
if (!this.isAlive() && this.isEnteredWorld()) {
|
|
||||||
if (!this.timestamps.containsKey("DeathTime")) {
|
|
||||||
this.timestamps.put("DeathTime", System.currentTimeMillis());
|
|
||||||
} else if ((System.currentTimeMillis() - this.timestamps.get("DeathTime")) > 600000)
|
|
||||||
forceRespawn(this);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.isAlive() && this.isActive && this.enteredWorld) {
|
if (this.isAlive() && this.isActive && this.enteredWorld) {
|
||||||
|
|
||||||
this.updateMovementState();
|
|
||||||
|
|
||||||
if (this.combatStats == null) {
|
if (this.combatStats == null) {
|
||||||
this.combatStats = new PlayerCombatStats(this);
|
this.combatStats = new PlayerCombatStats(this);
|
||||||
} else {
|
} else {
|
||||||
this.combatStats.update();
|
try {
|
||||||
|
this.combatStats.update();
|
||||||
|
}catch(Exception ignored){
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
this.doRegen();
|
this.doRegen();
|
||||||
}
|
}
|
||||||
@@ -5170,24 +5180,26 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
this.updateBlessingMessage();
|
this.updateBlessingMessage();
|
||||||
|
|
||||||
this.safeZone = this.isInSafeZone();
|
this.safeZone = this.isInSafeZone();
|
||||||
if (!this.timestamps.containsKey("nextBoxCheck"))
|
|
||||||
this.timestamps.put("nextBoxCheck", System.currentTimeMillis() + 10000);
|
|
||||||
|
|
||||||
if (!this.isBoxed && this.timestamps.get("nextBoxCheck") < System.currentTimeMillis()) {
|
if(this.isActive && this.enteredWorld) {
|
||||||
this.isBoxed = checkIfBoxed(this);
|
if (!this.timestamps.containsKey("nextBoxCheck"))
|
||||||
this.timestamps.put("nextBoxCheck", System.currentTimeMillis() + 10000);
|
this.timestamps.put("nextBoxCheck", System.currentTimeMillis() + 10000);
|
||||||
}
|
|
||||||
|
|
||||||
if (this.level < 10 && this.enteredWorld) {
|
if (!this.isBoxed && this.timestamps.get("nextBoxCheck") < System.currentTimeMillis()) {
|
||||||
while (this.level < 10) {
|
this.isBoxed = checkIfBoxed(this);
|
||||||
grantXP(Experience.getBaseExperience(this.level + 1) - this.exp);
|
this.timestamps.put("nextBoxCheck", System.currentTimeMillis() + 10000);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.level < 10 && this.enteredWorld) {
|
||||||
|
while (this.level < 10) {
|
||||||
|
grantXP(Experience.getBaseExperience(this.level + 1) - this.exp);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.isBoxed && !this.containsEffect(1672601862)) {
|
||||||
|
PowersManager.applyPower(this, this, Vector3fImmutable.ZERO, 1672601862, 40, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.isBoxed && !this.containsEffect(1672601862)) {
|
|
||||||
PowersManager.applyPower(this, this, Vector3fImmutable.ZERO, 1672601862, 40, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.isFlying()) {
|
if (this.isFlying()) {
|
||||||
if (this.effects.containsKey("MoveBuff")) {
|
if (this.effects.containsKey("MoveBuff")) {
|
||||||
GroundPlayer(this);
|
GroundPlayer(this);
|
||||||
@@ -5209,6 +5221,11 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
try {
|
||||||
|
this.clearClientEffects();
|
||||||
|
}catch(Exception ignored){
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.error(e);
|
Logger.error(e);
|
||||||
@@ -5220,6 +5237,17 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
Logger.error("UPDATE ISSUE: " + e);
|
Logger.error("UPDATE ISSUE: " + e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void clearClientEffects(){
|
||||||
|
if(this.bonuses != null) {
|
||||||
|
if (!bonuses.getBool(ModType.Stunned, SourceType.None)) {
|
||||||
|
this.removeEffectBySource(EffectSourceType.Stun, 40, true);
|
||||||
|
}
|
||||||
|
if(!this.bonuses.getBool(Enum.ModType.CannotMove,Enum.SourceType.None)){
|
||||||
|
this.removeEffectBySource(EffectSourceType.Root,40,true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
public static void unboxPlayer(PlayerCharacter player){
|
public static void unboxPlayer(PlayerCharacter player){
|
||||||
String machineID = player.getClientConnection().machineID;
|
String machineID = player.getClientConnection().machineID;
|
||||||
ArrayList<PlayerCharacter> sameMachine = new ArrayList<>();
|
ArrayList<PlayerCharacter> sameMachine = new ArrayList<>();
|
||||||
@@ -5229,14 +5257,22 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for(PlayerCharacter pc : sameMachine)
|
boolean valid = true;
|
||||||
pc.isBoxed = true;
|
for(PlayerCharacter pc : sameMachine){
|
||||||
|
if(!pc.safeZone)
|
||||||
player.isBoxed = false;
|
valid = false;
|
||||||
if(player.containsEffect(1672601862)) {
|
|
||||||
player.removeEffectBySource(EffectSourceType.DeathShroud,41,false);
|
|
||||||
}
|
}
|
||||||
|
if(valid) {
|
||||||
|
for (PlayerCharacter pc : sameMachine)
|
||||||
|
pc.isBoxed = true;
|
||||||
|
|
||||||
|
player.isBoxed = false;
|
||||||
|
if (player.containsEffect(1672601862)) {
|
||||||
|
player.removeEffectBySource(EffectSourceType.DeathShroud, 41, false);
|
||||||
|
}
|
||||||
|
}else{
|
||||||
|
ChatManager.chatSystemInfo(player, "All Boxes Must Be In Safezone To Switch");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
public static boolean checkIfBoxed(PlayerCharacter player){
|
public static boolean checkIfBoxed(PlayerCharacter player){
|
||||||
if(ConfigManager.MB_WORLD_BOXLIMIT.getValue().equals("false")) {
|
if(ConfigManager.MB_WORLD_BOXLIMIT.getValue().equals("false")) {
|
||||||
@@ -5347,9 +5383,11 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
setLoc(newLoc);
|
|
||||||
this.region = AbstractWorldObject.GetRegionByWorldObject(this);
|
this.region = AbstractWorldObject.GetRegionByWorldObject(this);
|
||||||
|
|
||||||
|
setLoc(newLoc);
|
||||||
|
|
||||||
if (this.getDebug(1))
|
if (this.getDebug(1))
|
||||||
ChatManager.chatSystemInfo(this,
|
ChatManager.chatSystemInfo(this,
|
||||||
"Distance to target " + this.getEndLoc().distance2D(this.getLoc()) + " speed " + this.getSpeed());
|
"Distance to target " + this.getEndLoc().distance2D(this.getLoc()) + " speed " + this.getSpeed());
|
||||||
@@ -5646,6 +5684,8 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void setEnteredWorld(boolean enteredWorld) {
|
public void setEnteredWorld(boolean enteredWorld) {
|
||||||
|
if(enteredWorld)
|
||||||
|
this.timestamps.put("nextBoxCheck", System.currentTimeMillis() + 10000);
|
||||||
this.enteredWorld = enteredWorld;
|
this.enteredWorld = enteredWorld;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -5751,10 +5791,15 @@ public class PlayerCharacter extends AbstractCharacter {
|
|||||||
} else {
|
} else {
|
||||||
healthRegen = 0;
|
healthRegen = 0;
|
||||||
manaRegen = 0;
|
manaRegen = 0;
|
||||||
if (this.combat == true)
|
|
||||||
stamRegen = MBServerStatics.STAMINA_REGEN_RUN_COMBAT;
|
if(this.containsEffect(441156479) || this.containsEffect(441156455)) {
|
||||||
else
|
stamRegen = MBServerStatics.STAMINA_REGEN_WALK;
|
||||||
stamRegen = MBServerStatics.STAMINA_REGEN_RUN_NONCOMBAT;
|
}else {
|
||||||
|
if (this.combat == true)
|
||||||
|
stamRegen = MBServerStatics.STAMINA_REGEN_RUN_COMBAT;
|
||||||
|
else
|
||||||
|
stamRegen = MBServerStatics.STAMINA_REGEN_RUN_NONCOMBAT;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case FLYING:
|
case FLYING:
|
||||||
|
|||||||
@@ -1,21 +1,16 @@
|
|||||||
package engine.objects;
|
package engine.objects;
|
||||||
|
|
||||||
import engine.Enum;
|
import engine.Enum;
|
||||||
import engine.gameManager.ChatManager;
|
|
||||||
import engine.math.Vector2f;
|
|
||||||
import engine.math.Vector3fImmutable;
|
|
||||||
import engine.powers.EffectsBase;
|
import engine.powers.EffectsBase;
|
||||||
|
import engine.powers.PowersBase;
|
||||||
import engine.powers.effectmodifiers.AbstractEffectModifier;
|
import engine.powers.effectmodifiers.AbstractEffectModifier;
|
||||||
import engine.server.MBServerStatics;
|
import engine.server.MBServerStatics;
|
||||||
import org.pmw.tinylog.Logger;
|
|
||||||
|
|
||||||
import javax.swing.*;
|
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
import java.math.RoundingMode;
|
import java.math.RoundingMode;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
|
||||||
|
|
||||||
public class PlayerCombatStats {
|
public class PlayerCombatStats {
|
||||||
|
|
||||||
@@ -26,7 +21,7 @@ public class PlayerCombatStats {
|
|||||||
public float attackSpeedHandOne;
|
public float attackSpeedHandOne;
|
||||||
public float rangeHandOne;
|
public float rangeHandOne;
|
||||||
public float atrHandOne;
|
public float atrHandOne;
|
||||||
//off hand data
|
//offhand data
|
||||||
public int minDamageHandTwo;
|
public int minDamageHandTwo;
|
||||||
public int maxDamageHandTwo;
|
public int maxDamageHandTwo;
|
||||||
public float attackSpeedHandTwo;
|
public float attackSpeedHandTwo;
|
||||||
@@ -254,18 +249,6 @@ public class PlayerCombatStats {
|
|||||||
HIT_VALUE_MAP.put(2.50f, 100f);
|
HIT_VALUE_MAP.put(2.50f, 100f);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Values for health and mana are in terms of the number of seconds it takes to recover 1%
|
|
||||||
//Values for stamina are in terms of the number of seconds it takes to recover 1 point
|
|
||||||
//HEALTH//MANA//STAMINA
|
|
||||||
private static Vector3fImmutable resting = new Vector3fImmutable(3.0f,1.2f,0.5f);
|
|
||||||
private static Vector3fImmutable idling = new Vector3fImmutable(15.0f,6.0f,5.0f);
|
|
||||||
private static Vector3fImmutable walking = new Vector3fImmutable(20.0f,8.0f,0.0f);
|
|
||||||
private static Vector3fImmutable running = new Vector3fImmutable(0.0f,0.0f,0.0f);
|
|
||||||
|
|
||||||
//#Values for how fast mana is consumed. The first is how fast when player is not in combat
|
|
||||||
//#mode, the second is when he IS in combat mode. This is in Stamina reduction per second.
|
|
||||||
private static Vector2f consumption = new Vector2f(0.4f,0.65f);
|
|
||||||
|
|
||||||
public PlayerCombatStats(PlayerCharacter pc) {
|
public PlayerCombatStats(PlayerCharacter pc) {
|
||||||
this.owner = pc;
|
this.owner = pc;
|
||||||
this.update();
|
this.update();
|
||||||
@@ -368,20 +351,29 @@ public class PlayerCombatStats {
|
|||||||
float masteryLevel = 0;
|
float masteryLevel = 0;
|
||||||
|
|
||||||
if(this.owner.skills.containsKey(skill)) {
|
if(this.owner.skills.containsKey(skill)) {
|
||||||
skillLevel = this.owner.skills.get(skill).getModifiedAmount();//calculateBuffedSkillLevel(skill,this.owner);//this.owner.skills.get(skill).getTotalSkillPercet();
|
skillLevel = this.owner.skills.get(skill).getModifiedAmount();
|
||||||
}
|
}
|
||||||
if(this.owner.skills.containsKey(mastery))
|
if(this.owner.skills.containsKey(mastery))
|
||||||
masteryLevel = this.owner.skills.get(mastery).getModifiedAmount();//calculateBuffedSkillLevel(mastery,this.owner);//this.owner.skills.get(mastery).getTotalSkillPercet();
|
masteryLevel = this.owner.skills.get(mastery).getModifiedAmount();
|
||||||
|
|
||||||
float stanceValue = 0.0f;
|
float stanceValue = 0.0f;
|
||||||
float atrEnchants = 0;
|
float atrEnchants = 0;
|
||||||
|
float healerDefStance = 0.0f;
|
||||||
for(String effID : this.owner.effects.keySet()) {
|
for(String effID : this.owner.effects.keySet()) {
|
||||||
if (effID.contains("Stance")) {
|
if (effID.contains("Stance")) {
|
||||||
Effect effect = this.owner.effects.get(effID);
|
Effect effect = this.owner.effects.get(effID);
|
||||||
EffectsBase eb = effect.getEffectsBase();
|
EffectsBase eb = effect.getEffectsBase();
|
||||||
if(eb.getIDString().equals("STC-H-DA"))
|
if(eb.getIDString().equals("STC-H-DA")){
|
||||||
|
for (AbstractEffectModifier mod : this.owner.effects.get(effID).getEffectModifiers()) {
|
||||||
|
if (mod.modType.equals(Enum.ModType.OCV)) {
|
||||||
|
float percent = mod.getPercentMod();
|
||||||
|
int trains = this.owner.effects.get(effID).getTrains();
|
||||||
|
float modValue = percent + (trains * mod.getRamp());
|
||||||
|
healerDefStance += modValue * 0.01f;
|
||||||
|
}
|
||||||
|
}
|
||||||
continue;
|
continue;
|
||||||
|
}
|
||||||
for (AbstractEffectModifier mod : this.owner.effects.get(effID).getEffectModifiers()) {
|
for (AbstractEffectModifier mod : this.owner.effects.get(effID).getEffectModifiers()) {
|
||||||
if (mod.modType.equals(Enum.ModType.OCV)) {
|
if (mod.modType.equals(Enum.ModType.OCV)) {
|
||||||
float percent = mod.getPercentMod();
|
float percent = mod.getPercentMod();
|
||||||
@@ -432,7 +424,7 @@ public class PlayerCombatStats {
|
|||||||
preciseRune += 0.05f;
|
preciseRune += 0.05f;
|
||||||
}
|
}
|
||||||
|
|
||||||
atr = primaryStat / 2;
|
atr = primaryStat / 2.0f;
|
||||||
atr += skillLevel * 4;
|
atr += skillLevel * 4;
|
||||||
atr += masteryLevel * 3;
|
atr += masteryLevel * 3;
|
||||||
atr += prefixValues;
|
atr += prefixValues;
|
||||||
@@ -446,13 +438,17 @@ public class PlayerCombatStats {
|
|||||||
float modifier = 1 + (positivePercentBonuses + negativePercentBonuses);
|
float modifier = 1 + (positivePercentBonuses + negativePercentBonuses);
|
||||||
if(preciseRune > 1.0f)
|
if(preciseRune > 1.0f)
|
||||||
modifier -= 0.05f;
|
modifier -= 0.05f;
|
||||||
if(stanceValue > 1.0f){
|
if(stanceValue > 0.0f){
|
||||||
modifier -= (stanceValue - 1.0f);
|
modifier -= (stanceValue);
|
||||||
}
|
}
|
||||||
|
modifier -= healerDefStance;
|
||||||
atr *= modifier;
|
atr *= modifier;
|
||||||
}
|
}
|
||||||
atr = (float) Math.round(atr);
|
atr = (float) Math.round(atr);
|
||||||
|
|
||||||
|
if(atr < 0)
|
||||||
|
atr = 0;
|
||||||
|
|
||||||
if(mainHand){
|
if(mainHand){
|
||||||
this.atrHandOne = atr;
|
this.atrHandOne = atr;
|
||||||
}else{
|
}else{
|
||||||
@@ -490,7 +486,6 @@ public class PlayerCombatStats {
|
|||||||
skill = weapon.getItemBase().getSkillRequired();
|
skill = weapon.getItemBase().getSkillRequired();
|
||||||
mastery = weapon.getItemBase().getMastery();
|
mastery = weapon.getItemBase().getMastery();
|
||||||
if (weapon.getItemBase().isStrBased()) {
|
if (weapon.getItemBase().isStrBased()) {
|
||||||
//primaryStat = this.owner.statStrCurrent;
|
|
||||||
//secondaryStat = specialDex;//getDexAfterPenalty(this.owner);
|
//secondaryStat = specialDex;//getDexAfterPenalty(this.owner);
|
||||||
primaryStat = this.owner.statStrCurrent;
|
primaryStat = this.owner.statStrCurrent;
|
||||||
secondaryStat = this.owner.statDexCurrent;
|
secondaryStat = this.owner.statDexCurrent;
|
||||||
@@ -536,11 +531,13 @@ public class PlayerCombatStats {
|
|||||||
this.minDamageHandOne = roundedMin;
|
this.minDamageHandOne = roundedMin;
|
||||||
} else {
|
} else {
|
||||||
this.minDamageHandTwo = roundedMin;
|
this.minDamageHandTwo = roundedMin;
|
||||||
if(this.owner.charItemManager.getEquipped(1) == null && this.owner.charItemManager.getEquipped(2) != null){
|
if(this.owner.charItemManager != null) {
|
||||||
if(!this.owner.charItemManager.getEquipped(2).getItemBase().isShield())
|
if (this.owner.charItemManager.getEquipped(1) == null && this.owner.charItemManager.getEquipped(2) != null) {
|
||||||
this.minDamageHandOne = 0;
|
if (!this.owner.charItemManager.getEquipped(2).getItemBase().isShield())
|
||||||
}else if(this.owner.charItemManager.getEquipped(2) == null && this.owner.charItemManager.getEquipped(1) != null){
|
this.minDamageHandOne = 0;
|
||||||
this.minDamageHandTwo = 0;
|
} else if (this.owner.charItemManager.getEquipped(2) == null && this.owner.charItemManager.getEquipped(1) != null) {
|
||||||
|
this.minDamageHandTwo = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -612,13 +609,15 @@ public class PlayerCombatStats {
|
|||||||
|
|
||||||
if(mainHand){
|
if(mainHand){
|
||||||
this.maxDamageHandOne = roundedMax;
|
this.maxDamageHandOne = roundedMax;
|
||||||
}else{
|
}else {
|
||||||
this.maxDamageHandTwo = roundedMax;
|
if (this.owner.charItemManager != null) {
|
||||||
if(this.owner.charItemManager.getEquipped(1) == null && this.owner.charItemManager.getEquipped(2) != null){
|
this.maxDamageHandTwo = roundedMax;
|
||||||
if(!this.owner.charItemManager.getEquipped(2).getItemBase().isShield())
|
if (this.owner.charItemManager.getEquipped(1) == null && this.owner.charItemManager.getEquipped(2) != null) {
|
||||||
this.maxDamageHandOne = 0;
|
if (!this.owner.charItemManager.getEquipped(2).getItemBase().isShield())
|
||||||
}else if(this.owner.charItemManager.getEquipped(2) == null && this.owner.charItemManager.getEquipped(1) != null){
|
this.maxDamageHandOne = 0;
|
||||||
this.maxDamageHandTwo = 0;
|
} else if (this.owner.charItemManager.getEquipped(2) == null && this.owner.charItemManager.getEquipped(1) != null) {
|
||||||
|
this.maxDamageHandTwo = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -689,9 +688,9 @@ public class PlayerCombatStats {
|
|||||||
}
|
}
|
||||||
|
|
||||||
float bonusValues = 1 + this.owner.bonuses.getFloatPercentAll(Enum.ModType.AttackDelay,Enum.SourceType.None);//1.0f;
|
float bonusValues = 1 + this.owner.bonuses.getFloatPercentAll(Enum.ModType.AttackDelay,Enum.SourceType.None);//1.0f;
|
||||||
bonusValues -= stanceValue + delayExtra; // take away stance modifier from alac bonus values
|
bonusValues -= stanceValue + delayExtra; // take away stance modifier from alacrity bonus values
|
||||||
speed *= 1 + stanceValue; // apply stance bonus
|
speed *= 1 + stanceValue; // apply stance bonus
|
||||||
speed *= bonusValues; // apply alac bonuses without stance mod
|
speed *= bonusValues; // apply alacrity bonuses without stance mod
|
||||||
|
|
||||||
if(speed < 10.0f)
|
if(speed < 10.0f)
|
||||||
speed = 10.0f;
|
speed = 10.0f;
|
||||||
@@ -745,23 +744,23 @@ public class PlayerCombatStats {
|
|||||||
float armorSkill = 0.0f;
|
float armorSkill = 0.0f;
|
||||||
float armorDefense = 0.0f;
|
float armorDefense = 0.0f;
|
||||||
ArrayList<String> armorsUsed = new ArrayList<>();
|
ArrayList<String> armorsUsed = new ArrayList<>();
|
||||||
int itemdef = 0;
|
int itemDef;
|
||||||
for(Item equipped : this.owner.charItemManager.getEquipped().values()){
|
for(Item equipped : this.owner.charItemManager.getEquipped().values()){
|
||||||
ItemBase ib = equipped.getItemBase();
|
ItemBase ib = equipped.getItemBase();
|
||||||
if(ib.isHeavyArmor() || ib.isMediumArmor() || ib.isLightArmor() || ib.isClothArmor()){
|
if(ib.isHeavyArmor() || ib.isMediumArmor() || ib.isLightArmor() || ib.isClothArmor()){
|
||||||
itemdef = ib.getDefense();
|
itemDef = ib.getDefense();
|
||||||
|
|
||||||
for(Effect eff : equipped.effects.values()){
|
for(Effect eff : equipped.effects.values()){
|
||||||
for(AbstractEffectModifier mod : eff.getEffectModifiers()){
|
for(AbstractEffectModifier mod : eff.getEffectModifiers()){
|
||||||
if(mod.modType.equals(Enum.ModType.DR)){
|
if(mod.modType.equals(Enum.ModType.DR)){
|
||||||
itemdef += mod.minMod + (mod.getRamp() * eff.getTrains());
|
itemDef += mod.minMod + (mod.getRamp() * eff.getTrains());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!ib.isClothArmor() && !armorsUsed.contains(ib.getSkillRequired())) {
|
if(!ib.isClothArmor() && !armorsUsed.contains(ib.getSkillRequired())) {
|
||||||
armorsUsed.add(ib.getSkillRequired());
|
armorsUsed.add(ib.getSkillRequired());
|
||||||
}
|
}
|
||||||
armorDefense += itemdef;
|
armorDefense += itemDef;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for(String armorUsed : armorsUsed){
|
for(String armorUsed : armorsUsed){
|
||||||
@@ -777,16 +776,20 @@ public class PlayerCombatStats {
|
|||||||
blockSkill = this.owner.skills.get("Block").getModifiedAmount();
|
blockSkill = this.owner.skills.get("Block").getModifiedAmount();
|
||||||
|
|
||||||
float shieldDefense = 0.0f;
|
float shieldDefense = 0.0f;
|
||||||
if(this.owner.charItemManager.getEquipped(2) != null && this.owner.charItemManager.getEquipped(2).getItemBase().isShield()){
|
try {
|
||||||
Item shield = this.owner.charItemManager.getEquipped(2);
|
if (this.owner.charItemManager.getEquipped(2) != null && this.owner.charItemManager.getEquipped(2).getItemBase().isShield()) {
|
||||||
shieldDefense += shield.getItemBase().getDefense();
|
Item shield = this.owner.charItemManager.getEquipped(2);
|
||||||
for(Effect eff : shield.effects.values()){
|
shieldDefense += shield.getItemBase().getDefense();
|
||||||
for(AbstractEffectModifier mod : eff.getEffectModifiers()){
|
for (Effect eff : shield.effects.values()) {
|
||||||
if(mod.modType.equals(Enum.ModType.DR)){
|
for (AbstractEffectModifier mod : eff.getEffectModifiers()) {
|
||||||
shieldDefense += mod.minMod + (mod.getRamp() * eff.getTrains());
|
if (mod.modType.equals(Enum.ModType.DR)) {
|
||||||
|
shieldDefense += mod.minMod + (mod.getRamp() * eff.getTrains());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}catch(Exception ignore){
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
float weaponSkill = 0.0f;
|
float weaponSkill = 0.0f;
|
||||||
@@ -846,10 +849,76 @@ public class PlayerCombatStats {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(this.owner.charItemManager.getEquipped(2) == null)
|
|
||||||
blockSkill = 0;
|
//right ring
|
||||||
else if(this.owner.charItemManager != null && this.owner.charItemManager.getEquipped(2) != null && !this.owner.charItemManager.getEquipped(2).getItemBase().isShield())
|
if(this.owner.charItemManager != null){
|
||||||
blockSkill = 0;
|
try{
|
||||||
|
if(this.owner.charItemManager.getEquipped(7) != null){
|
||||||
|
for(String effID : this.owner.charItemManager.getEquipped(7).effects.keySet()) {
|
||||||
|
for (AbstractEffectModifier mod : this.owner.charItemManager.getEquipped(7).effects.get(effID).getEffectModifiers()) {
|
||||||
|
if (mod.modType.equals(Enum.ModType.DCV)) {
|
||||||
|
if (mod.getPercentMod() == 0) {
|
||||||
|
float value = mod.getMinMod();
|
||||||
|
int trains = this.owner.effects.get(effID).getTrains();
|
||||||
|
float modValue = value + (trains * mod.getRamp());
|
||||||
|
flatBonuses += modValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}catch(Exception e){
|
||||||
|
|
||||||
|
}
|
||||||
|
//left ring
|
||||||
|
try {
|
||||||
|
if (this.owner.charItemManager.getEquipped(8) != null) {
|
||||||
|
for (String effID : this.owner.charItemManager.getEquipped(8).effects.keySet()) {
|
||||||
|
for (AbstractEffectModifier mod : this.owner.charItemManager.getEquipped(8).effects.get(effID).getEffectModifiers()) {
|
||||||
|
if (mod.modType.equals(Enum.ModType.DCV)) {
|
||||||
|
if (mod.getPercentMod() == 0) {
|
||||||
|
float value = mod.getMinMod();
|
||||||
|
int trains = this.owner.effects.get(effID).getTrains();
|
||||||
|
float modValue = value + (trains * mod.getRamp());
|
||||||
|
flatBonuses += modValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}catch(Exception e){
|
||||||
|
|
||||||
|
}
|
||||||
|
//necklace
|
||||||
|
try{
|
||||||
|
if(this.owner.charItemManager.getEquipped(9) != null){
|
||||||
|
for(String effID : this.owner.charItemManager.getEquipped(9).effects.keySet()) {
|
||||||
|
for (AbstractEffectModifier mod : this.owner.charItemManager.getEquipped(9).effects.get(effID).getEffectModifiers()) {
|
||||||
|
if (mod.modType.equals(Enum.ModType.DCV)) {
|
||||||
|
if (mod.getPercentMod() == 0) {
|
||||||
|
float value = mod.getMinMod();
|
||||||
|
int trains = this.owner.effects.get(effID).getTrains();
|
||||||
|
float modValue = value + (trains * mod.getRamp());
|
||||||
|
flatBonuses += modValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}catch(Exception e){
|
||||||
|
|
||||||
|
}
|
||||||
|
try{
|
||||||
|
if(this.owner.charItemManager.getEquipped(2) == null)
|
||||||
|
blockSkill = 0;
|
||||||
|
else if(this.owner.charItemManager != null && this.owner.charItemManager.getEquipped(2) != null && !this.owner.charItemManager.getEquipped(2).getItemBase().isShield())
|
||||||
|
blockSkill = 0;
|
||||||
|
}catch(Exception e){
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
float defense = (1 + armorSkill / 50) * armorDefense;
|
float defense = (1 + armorSkill / 50) * armorDefense;
|
||||||
defense += (1 + blockSkill / 100) * shieldDefense;
|
defense += (1 + blockSkill / 100) * shieldDefense;
|
||||||
@@ -868,6 +937,9 @@ public class PlayerCombatStats {
|
|||||||
}
|
}
|
||||||
defense = Math.round(defense);
|
defense = Math.round(defense);
|
||||||
|
|
||||||
|
if(defense < 0)
|
||||||
|
defense = 0;
|
||||||
|
|
||||||
this.defense = (int) defense;
|
this.defense = (int) defense;
|
||||||
} // PERFECT DO NOT TOUCH
|
} // PERFECT DO NOT TOUCH
|
||||||
|
|
||||||
@@ -877,7 +949,7 @@ public class PlayerCombatStats {
|
|||||||
if(def == 0)
|
if(def == 0)
|
||||||
return 100.0f;
|
return 100.0f;
|
||||||
|
|
||||||
float key = (float)((float)atr / def);
|
float key = ((float)atr / def);
|
||||||
BigDecimal bd = new BigDecimal(key).setScale(2, RoundingMode.HALF_UP);
|
BigDecimal bd = new BigDecimal(key).setScale(2, RoundingMode.HALF_UP);
|
||||||
key = bd.floatValue(); // handles rounding for mandatory 2 decimal places
|
key = bd.floatValue(); // handles rounding for mandatory 2 decimal places
|
||||||
if(key < 0.40f)
|
if(key < 0.40f)
|
||||||
@@ -887,4 +959,206 @@ public class PlayerCombatStats {
|
|||||||
return HIT_VALUE_MAP.get(key);
|
return HIT_VALUE_MAP.get(key);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static float getSpellAtr(PlayerCharacter pc, PowersBase pb) {
|
||||||
|
|
||||||
|
if (pc == null)
|
||||||
|
return 0f;
|
||||||
|
|
||||||
|
if(pb == null)
|
||||||
|
return 0.0f;
|
||||||
|
|
||||||
|
float modifiedFocusLine = 0.0f;
|
||||||
|
if(pc.skills.containsKey(pb.skillName)){
|
||||||
|
modifiedFocusLine = pc.skills.get(pb.skillName).getModifiedAmount();
|
||||||
|
}
|
||||||
|
|
||||||
|
float modifiedDexterity = pc.statDexCurrent;
|
||||||
|
|
||||||
|
float weaponATR1 = 0.0f;
|
||||||
|
if(pc.charItemManager != null && pc.charItemManager.getEquipped(1) != null){
|
||||||
|
for(Effect eff : pc.charItemManager.getEquipped(1).effects.values()){
|
||||||
|
for (AbstractEffectModifier mod : eff.getEffectModifiers()){
|
||||||
|
if(mod.modType.equals(Enum.ModType.OCV)){
|
||||||
|
float base = mod.minMod;
|
||||||
|
float ramp = mod.getRamp();
|
||||||
|
int trains = eff.getTrains();
|
||||||
|
weaponATR1 = base + (ramp * trains);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
float weaponATR2 = 0.0f;
|
||||||
|
if(pc.charItemManager != null && pc.charItemManager.getEquipped(2) != null){
|
||||||
|
for(Effect eff : pc.charItemManager.getEquipped(2).effects.values()){
|
||||||
|
for (AbstractEffectModifier mod : eff.getEffectModifiers()){
|
||||||
|
if(mod.modType.equals(Enum.ModType.OCV)){
|
||||||
|
float base = mod.minMod;
|
||||||
|
float ramp = mod.getRamp();
|
||||||
|
int trains = eff.getTrains();
|
||||||
|
weaponATR2 = base + (ramp * trains);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
float precise = 1.0f;
|
||||||
|
for(CharacterRune rune : pc.runes){
|
||||||
|
if(rune.getRuneBase().getName().equals("Precise"))
|
||||||
|
precise += 0.05f;
|
||||||
|
}
|
||||||
|
|
||||||
|
float stanceMod = 1.0f;
|
||||||
|
float atrBuffs = 0.0f;
|
||||||
|
|
||||||
|
float healerDefStance = 0.0f;
|
||||||
|
for(String effID : pc.effects.keySet()) {
|
||||||
|
if (effID.contains("Stance")) {
|
||||||
|
Effect effect = pc.effects.get(effID);
|
||||||
|
EffectsBase eb = effect.getEffectsBase();
|
||||||
|
if(eb.getIDString().equals("STC-H-DA")){
|
||||||
|
for (AbstractEffectModifier mod : pc.effects.get(effID).getEffectModifiers()) {
|
||||||
|
if (mod.modType.equals(Enum.ModType.OCV)) {
|
||||||
|
float percent = mod.getPercentMod();
|
||||||
|
int trains = pc.effects.get(effID).getTrains();
|
||||||
|
float modValue = percent + (trains * mod.getRamp());
|
||||||
|
healerDefStance += modValue * 0.01f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
for (AbstractEffectModifier mod : pc.effects.get(effID).getEffectModifiers()) {
|
||||||
|
if (mod.modType.equals(Enum.ModType.OCV)) {
|
||||||
|
float percent = mod.getPercentMod();
|
||||||
|
int trains = pc.effects.get(effID).getTrains();
|
||||||
|
float modValue = percent + (trains * mod.getRamp());
|
||||||
|
stanceMod += modValue * 0.01f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
for (AbstractEffectModifier mod : pc.effects.get(effID).getEffectModifiers()) {
|
||||||
|
if (mod.modType.equals(Enum.ModType.OCV)) {
|
||||||
|
if(mod.getPercentMod() == 0) {
|
||||||
|
float value = mod.getMinMod();
|
||||||
|
int trains = pc.effects.get(effID).getTrains();
|
||||||
|
float modValue = value + (trains * mod.getRamp());
|
||||||
|
atrBuffs += modValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
float atr = 7 * modifiedFocusLine;
|
||||||
|
atr += (modifiedDexterity * 0.5f) + weaponATR1 + weaponATR2;
|
||||||
|
atr *= precise;
|
||||||
|
atr += atrBuffs;
|
||||||
|
if(pc.bonuses != null)
|
||||||
|
atr *= 1 + (pc.bonuses.getFloatPercentAll(Enum.ModType.OCV, Enum.SourceType.None) - (stanceMod - 1) - (precise - 1) - healerDefStance);
|
||||||
|
atr *= stanceMod;
|
||||||
|
return atr;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void grantExperience(AbstractCharacter killed, Group group){
|
||||||
|
|
||||||
|
if(killed == null)
|
||||||
|
return;
|
||||||
|
double grantedXP;
|
||||||
|
|
||||||
|
if(group != null){
|
||||||
|
|
||||||
|
for(PlayerCharacter member : group.members){
|
||||||
|
//white mob, early exit
|
||||||
|
if(Experience.getConMod(member,killed) <= 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
//can only get XP over level 75 for player kills
|
||||||
|
if(member.level >= 75 && !killed.getObjectType().equals(Enum.GameObjectType.PlayerCharacter))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
//cannot gain xp while dead
|
||||||
|
if(!member.isAlive())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
//out of XP range
|
||||||
|
if(member.loc.distanceSquared(killed.loc) > MBServerStatics.CHARACTER_LOAD_RANGE * MBServerStatics.CHARACTER_LOAD_RANGE)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
float mod;
|
||||||
|
switch(group.members.size()){
|
||||||
|
default:
|
||||||
|
mod = 1.0f;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
mod = 0.8f;
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
mod = 0.73f;
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
mod = 0.69f;
|
||||||
|
break;
|
||||||
|
case 5:
|
||||||
|
mod = 0.65f;
|
||||||
|
break;
|
||||||
|
case 6:
|
||||||
|
mod = 0.58f;
|
||||||
|
break;
|
||||||
|
case 7:
|
||||||
|
mod = 0.54f;
|
||||||
|
break;
|
||||||
|
case 8:
|
||||||
|
mod = 0.50f;
|
||||||
|
break;
|
||||||
|
case 9:
|
||||||
|
mod = 0.47f;
|
||||||
|
break;
|
||||||
|
case 10:
|
||||||
|
mod = 0.45f;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
double xp = getXP(member) * mod;
|
||||||
|
|
||||||
|
member.grantXP((int) xp);
|
||||||
|
}
|
||||||
|
|
||||||
|
}else{
|
||||||
|
//Solo XP
|
||||||
|
|
||||||
|
//white mob, early exit
|
||||||
|
if(Experience.getConMod(this.owner,killed) <= 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
//can only get XP over level 75 for player kills
|
||||||
|
if(this.owner.level >= 75 && !killed.getObjectType().equals(Enum.GameObjectType.PlayerCharacter))
|
||||||
|
return;
|
||||||
|
|
||||||
|
//cannot gain xp while dead
|
||||||
|
if(!this.owner.isAlive())
|
||||||
|
return;
|
||||||
|
|
||||||
|
this.owner.grantXP(getXP(this.owner));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int getXP(PlayerCharacter pc){
|
||||||
|
double xp = 0;
|
||||||
|
float mod = 0.10f;
|
||||||
|
|
||||||
|
if (pc.level >= 26 && pc.level <= 75)
|
||||||
|
{
|
||||||
|
mod = 0.10f - (0.001f * (pc.level - 24));
|
||||||
|
}
|
||||||
|
else if (pc.level > 75)
|
||||||
|
{
|
||||||
|
mod = 0.05f;
|
||||||
|
}
|
||||||
|
|
||||||
|
float levelFull = Experience.LevelToExp[pc.level + 1] - Experience.LevelToExp[pc.level];
|
||||||
|
|
||||||
|
xp = levelFull * mod;
|
||||||
|
|
||||||
|
return (int) xp;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ public class VendorDialog extends AbstractGameObject {
|
|||||||
private static VendorDialog vd;
|
private static VendorDialog vd;
|
||||||
private final String dialogType;
|
private final String dialogType;
|
||||||
private final String intro;
|
private final String intro;
|
||||||
private ArrayList<MenuOption> options = new ArrayList<>();
|
ArrayList<MenuOption> options = new ArrayList<>();
|
||||||
|
|
||||||
public VendorDialog(String dialogType, String intro, int UUID) {
|
public VendorDialog(String dialogType, String intro, int UUID) {
|
||||||
super(UUID);
|
super(UUID);
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
package engine.powers.effectmodifiers;
|
package engine.powers.effectmodifiers;
|
||||||
|
|
||||||
|
import engine.Enum;
|
||||||
import engine.Enum.DamageType;
|
import engine.Enum.DamageType;
|
||||||
import engine.Enum.GameObjectType;
|
import engine.Enum.GameObjectType;
|
||||||
import engine.Enum.ModType;
|
import engine.Enum.ModType;
|
||||||
@@ -122,9 +123,13 @@ public class HealthEffectModifier extends AbstractEffectModifier {
|
|||||||
float spi = (pc.getStatSpiCurrent() >= 1) ? (float) pc.getStatSpiCurrent() : 1f;
|
float spi = (pc.getStatSpiCurrent() >= 1) ? (float) pc.getStatSpiCurrent() : 1f;
|
||||||
// min *= (intt * 0.0045 + 0.055 * (float)Math.sqrt(intt - 0.5) + spi * 0.006 + 0.07 * (float)Math.sqrt(spi - 0.5) + 0.02 * (int)focus);
|
// min *= (intt * 0.0045 + 0.055 * (float)Math.sqrt(intt - 0.5) + spi * 0.006 + 0.07 * (float)Math.sqrt(spi - 0.5) + 0.02 * (int)focus);
|
||||||
// max *= (intt * 0.0117 + 0.13 * (float)Math.sqrt(intt - 0.5) + spi * 0.0024 + (float)Math.sqrt(spi - 0.5) * 0.021 + 0.015 * (int)focus);
|
// max *= (intt * 0.0117 + 0.13 * (float)Math.sqrt(intt - 0.5) + spi * 0.0024 + (float)Math.sqrt(spi - 0.5) * 0.021 + 0.015 * (int)focus);
|
||||||
|
|
||||||
min = HealthEffectModifier.getMinDamage(min, intt, spi, focus);
|
min = HealthEffectModifier.getMinDamage(min, intt, spi, focus);
|
||||||
max = HealthEffectModifier.getMaxDamage(max, intt, spi, focus);
|
max = HealthEffectModifier.getMaxDamage(max, intt, spi, focus);
|
||||||
|
|
||||||
|
//min *= pc.ZergMultiplier;
|
||||||
|
//max *= pc.ZergMultiplier;
|
||||||
|
|
||||||
//debug for spell damage and atr
|
//debug for spell damage and atr
|
||||||
if (pc.getDebug(16)) {
|
if (pc.getDebug(16)) {
|
||||||
String smsg = "Damage: " + (int) Math.abs(min) + " - " + (int) Math.abs(max);
|
String smsg = "Damage: " + (int) Math.abs(min) + " - " + (int) Math.abs(max);
|
||||||
@@ -165,9 +170,16 @@ public class HealthEffectModifier extends AbstractEffectModifier {
|
|||||||
PlayerBonuses bonus = source.getBonuses();
|
PlayerBonuses bonus = source.getBonuses();
|
||||||
|
|
||||||
// Apply any power effect modifiers (such as stances)
|
// Apply any power effect modifiers (such as stances)
|
||||||
if (bonus != null)
|
if (bonus != null){
|
||||||
modAmount *= (1 + (bonus.getFloatPercentAll(ModType.PowerDamageModifier, SourceType.None)));
|
modAmount *= (1 + bonus.getFloatPercentAll(ModType.PowerDamageModifier, SourceType.None));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(source.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)){
|
||||||
|
float multiplier = ((PlayerCharacter)source).ZergMultiplier;
|
||||||
|
modAmount *= multiplier;
|
||||||
|
}
|
||||||
|
|
||||||
if (modAmount == 0f)
|
if (modAmount == 0f)
|
||||||
return;
|
return;
|
||||||
if (AbstractWorldObject.IsAbstractCharacter(awo)) {
|
if (AbstractWorldObject.IsAbstractCharacter(awo)) {
|
||||||
|
|||||||
@@ -129,9 +129,16 @@ public class ManaEffectModifier extends AbstractEffectModifier {
|
|||||||
PlayerBonuses bonus = source.getBonuses();
|
PlayerBonuses bonus = source.getBonuses();
|
||||||
|
|
||||||
// Apply any power effect modifiers (such as stances)
|
// Apply any power effect modifiers (such as stances)
|
||||||
if (bonus != null)
|
if (bonus != null){
|
||||||
modAmount *= (1 + bonus.getFloatPercentAll(ModType.PowerDamageModifier, SourceType.None));
|
modAmount *= (1 + bonus.getFloatPercentAll(ModType.PowerDamageModifier, SourceType.None));
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(source.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)){
|
||||||
|
modAmount *= ((PlayerCharacter)source).ZergMultiplier;
|
||||||
|
}
|
||||||
|
|
||||||
if (modAmount == 0f)
|
if (modAmount == 0f)
|
||||||
return;
|
return;
|
||||||
if (AbstractWorldObject.IsAbstractCharacter(awo)) {
|
if (AbstractWorldObject.IsAbstractCharacter(awo)) {
|
||||||
|
|||||||
@@ -125,9 +125,15 @@ public class StaminaEffectModifier extends AbstractEffectModifier {
|
|||||||
PlayerBonuses bonus = source.getBonuses();
|
PlayerBonuses bonus = source.getBonuses();
|
||||||
|
|
||||||
// Apply any power effect modifiers (such as stances)
|
// Apply any power effect modifiers (such as stances)
|
||||||
if (bonus != null)
|
if (bonus != null){
|
||||||
modAmount *= (1 + (bonus.getFloatPercentAll(ModType.PowerDamageModifier, SourceType.None)));
|
modAmount *= (1 + bonus.getFloatPercentAll(ModType.PowerDamageModifier, SourceType.None));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(source.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)){
|
||||||
|
modAmount *= ((PlayerCharacter)source).ZergMultiplier;
|
||||||
|
}
|
||||||
|
|
||||||
if (modAmount == 0f)
|
if (modAmount == 0f)
|
||||||
return;
|
return;
|
||||||
if (AbstractWorldObject.IsAbstractCharacter(awo)) {
|
if (AbstractWorldObject.IsAbstractCharacter(awo)) {
|
||||||
|
|||||||
@@ -217,8 +217,13 @@ public class TransferStatPowerAction extends AbstractPowerAction {
|
|||||||
|
|
||||||
// Apply any power effect modifiers (such as stances)
|
// Apply any power effect modifiers (such as stances)
|
||||||
PlayerBonuses bonus = source.getBonuses();
|
PlayerBonuses bonus = source.getBonuses();
|
||||||
if (bonus != null)
|
if (bonus != null){
|
||||||
damage *= (1 + bonus.getFloatPercentAll(ModType.PowerDamageModifier, SourceType.None));
|
damage *= (1 + bonus.getFloatPercentAll(ModType.PowerDamageModifier, SourceType.None));
|
||||||
|
}
|
||||||
|
|
||||||
|
if(source.getObjectType().equals(Enum.GameObjectType.PlayerCharacter)){
|
||||||
|
damage *= ((PlayerCharacter)source).ZergMultiplier;
|
||||||
|
}
|
||||||
|
|
||||||
//get amount to transfer
|
//get amount to transfer
|
||||||
fromAmount = damage;
|
fromAmount = damage;
|
||||||
|
|||||||
@@ -281,6 +281,9 @@ public class LoginServer {
|
|||||||
Logger.info("Loading All Realms");
|
Logger.info("Loading All Realms");
|
||||||
Realm.loadAllRealms();
|
Realm.loadAllRealms();
|
||||||
|
|
||||||
|
Logger.info("Trashing Multibox Cheaters");
|
||||||
|
DbManager.AccountQueries.TRASH_CHEATERS();
|
||||||
|
|
||||||
Logger.info("***Boot Successful***");
|
Logger.info("***Boot Successful***");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -164,7 +164,17 @@ public class WorldServer {
|
|||||||
long uptimeSeconds = Math.abs(uptimeDuration.getSeconds());
|
long uptimeSeconds = Math.abs(uptimeDuration.getSeconds());
|
||||||
String uptime = String.format("%d hours %02d minutes %02d seconds", uptimeSeconds / 3600, (uptimeSeconds % 3600) / 60, (uptimeSeconds % 60));
|
String uptime = String.format("%d hours %02d minutes %02d seconds", uptimeSeconds / 3600, (uptimeSeconds % 3600) / 60, (uptimeSeconds % 60));
|
||||||
outString += "uptime: " + uptime;
|
outString += "uptime: " + uptime;
|
||||||
outString += " pop: " + SessionManager.getActivePlayerCharacterCount() + " max pop: " + SessionManager._maxPopulation;
|
int activePop = 0;
|
||||||
|
int boxedPop = 0;
|
||||||
|
for(PlayerCharacter pc : SessionManager.getAllActivePlayerCharacters()){
|
||||||
|
if(pc.isBoxed){
|
||||||
|
boxedPop ++;
|
||||||
|
}else{
|
||||||
|
activePop ++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//outString += " pop: " + SessionManager.getActivePlayerCharacterCount() + " max pop: " + SessionManager._maxPopulation;
|
||||||
|
outString += "Active Players: " + activePop + " Boxed Players: " + boxedPop;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.error("Failed to build string");
|
Logger.error("Failed to build string");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ package engine.util;
|
|||||||
|
|
||||||
import engine.gameManager.ConfigManager;
|
import engine.gameManager.ConfigManager;
|
||||||
import engine.gameManager.DbManager;
|
import engine.gameManager.DbManager;
|
||||||
|
import engine.gameManager.GroupManager;
|
||||||
import engine.gameManager.SessionManager;
|
import engine.gameManager.SessionManager;
|
||||||
import engine.net.client.ClientConnection;
|
import engine.net.client.ClientConnection;
|
||||||
import engine.net.client.Protocol;
|
import engine.net.client.Protocol;
|
||||||
@@ -15,6 +16,43 @@ import org.pmw.tinylog.Logger;
|
|||||||
public enum KeyCloneAudit {
|
public enum KeyCloneAudit {
|
||||||
KEYCLONEAUDIT;
|
KEYCLONEAUDIT;
|
||||||
|
|
||||||
|
public static boolean auditChatMsg(PlayerCharacter pc, String message) {
|
||||||
|
|
||||||
|
if(pc.selectedUUID == 0)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
int id = pc.selectedUUID;
|
||||||
|
String value = String.valueOf(id);
|
||||||
|
if(message.contains(value)) {
|
||||||
|
//targeting software detected
|
||||||
|
|
||||||
|
Group g = GroupManager.getGroup(pc);
|
||||||
|
|
||||||
|
if (g == null) {
|
||||||
|
try {
|
||||||
|
Logger.error("TARGET SOFTWARE DETECTED ON ACCOUNT: " + pc.getAccount().getUname());
|
||||||
|
DbManager.AccountQueries.SET_TRASH(pc.getAccount().getUname(), "TARGET");
|
||||||
|
pc.getClientConnection().forceDisconnect();
|
||||||
|
}catch(Exception e){
|
||||||
|
|
||||||
|
}
|
||||||
|
}else {
|
||||||
|
for (PlayerCharacter member : g.members) {
|
||||||
|
try {
|
||||||
|
Logger.error("TARGET SOFTWARE DETECTED ON ACCOUNT: " + member.getAccount().getUname());
|
||||||
|
DbManager.AccountQueries.SET_TRASH(member.getAccount().getUname(), "TARGET");
|
||||||
|
member.getClientConnection().forceDisconnect();
|
||||||
|
} catch (Exception e) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public void audit(PlayerCharacter player, Group group) {
|
public void audit(PlayerCharacter player, Group group) {
|
||||||
|
|
||||||
int machineCount = 0;
|
int machineCount = 0;
|
||||||
@@ -29,7 +67,7 @@ public enum KeyCloneAudit {
|
|||||||
if (machineCount > Integer.parseInt(ConfigManager.MB_WORLD_KEYCLONE_MAX.getValue())) {
|
if (machineCount > Integer.parseInt(ConfigManager.MB_WORLD_KEYCLONE_MAX.getValue())) {
|
||||||
Logger.error("Keyclone detected from: " + player.getAccount().getUname() +
|
Logger.error("Keyclone detected from: " + player.getAccount().getUname() +
|
||||||
" with machine count of: " + machineCount);
|
" with machine count of: " + machineCount);
|
||||||
DbManager.AccountQueries.SET_TRASH(machineID);
|
DbManager.AccountQueries.SET_TRASH(machineID,"MEMBERLIMIT");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -38,11 +76,18 @@ public enum KeyCloneAudit {
|
|||||||
try {
|
try {
|
||||||
TargetObjectMsg tarMsg = (TargetObjectMsg) msg;
|
TargetObjectMsg tarMsg = (TargetObjectMsg) msg;
|
||||||
ClientConnection origin = (ClientConnection) msg.getOrigin();
|
ClientConnection origin = (ClientConnection) msg.getOrigin();
|
||||||
|
|
||||||
long now = System.currentTimeMillis();
|
long now = System.currentTimeMillis();
|
||||||
|
|
||||||
if (tarMsg.getTargetType() != MBServerStatics.MASK_PLAYER)
|
if (PlayerCharacter.getPlayerCharacter(tarMsg.getTargetID()) == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
PlayerCharacter pc = origin.getPlayerCharacter();
|
||||||
|
pc.selectedUUID = tarMsg.getTargetID();
|
||||||
|
|
||||||
|
if(pc.getObjectUUID() == tarMsg.getTargetID())
|
||||||
|
return; //dont trigger for targeting yourself
|
||||||
|
|
||||||
if (System.currentTimeMillis() > origin.finalStrikeRefresh) {
|
if (System.currentTimeMillis() > origin.finalStrikeRefresh) {
|
||||||
origin.lastStrike = System.currentTimeMillis();
|
origin.lastStrike = System.currentTimeMillis();
|
||||||
origin.strikes = 0;
|
origin.strikes = 0;
|
||||||
@@ -59,8 +104,10 @@ public enum KeyCloneAudit {
|
|||||||
if (origin.strikes > 20) {
|
if (origin.strikes > 20) {
|
||||||
origin.finalStrikes++;
|
origin.finalStrikes++;
|
||||||
}
|
}
|
||||||
if (origin.finalStrikes > 3) {origin.forceDisconnect();
|
if (origin.finalStrikes > 3) {
|
||||||
DbManager.AccountQueries.SET_TRASH(origin.machineID);
|
origin.forceDisconnect();
|
||||||
|
DbManager.AccountQueries.SET_TRASH(pc.getAccount().getUname(), "TABSPEED");
|
||||||
|
Logger.error("TAB SPEED DETECTED ON ACCOUNT: " + pc.getAccount().getUname());
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
|
|
||||||
|
|||||||
@@ -53,10 +53,8 @@ public class HourlyJobThread implements Runnable {
|
|||||||
Logger.error("missing city map");
|
Logger.error("missing city map");
|
||||||
}
|
}
|
||||||
|
|
||||||
//run maintenance every day at 2 am
|
//run mines every day at 1:00 am CST
|
||||||
if(LocalDateTime.now().getHour() == 2) {
|
if(LocalDateTime.now().getHour() == 1) {
|
||||||
MaintenanceManager.dailyMaintenance();
|
|
||||||
|
|
||||||
//produce mine resources once a day
|
//produce mine resources once a day
|
||||||
for (Mine mine : Mine.getMines()) {
|
for (Mine mine : Mine.getMines()) {
|
||||||
try {
|
try {
|
||||||
@@ -68,6 +66,11 @@ public class HourlyJobThread implements Runnable {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//run maintenance every day at 2 am
|
||||||
|
if(LocalDateTime.now().getHour() == 2) {
|
||||||
|
MaintenanceManager.dailyMaintenance();
|
||||||
|
}
|
||||||
|
|
||||||
switch(LocalDateTime.now().getHour()){
|
switch(LocalDateTime.now().getHour()){
|
||||||
case 3:
|
case 3:
|
||||||
case 6:
|
case 6:
|
||||||
@@ -94,5 +97,27 @@ public class HourlyJobThread implements Runnable {
|
|||||||
bane.setDefaultTime();
|
bane.setDefaultTime();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
try{
|
||||||
|
Logger.info("Trashing Multibox Cheaters");
|
||||||
|
DbManager.AccountQueries.TRASH_CHEATERS();
|
||||||
|
|
||||||
|
//disconnect all players who were banned and are still in game
|
||||||
|
for(PlayerCharacter pc : SessionManager.getAllActivePlayers()){
|
||||||
|
Account account = pc.getClientConnection().getAccount();
|
||||||
|
if(account == null)
|
||||||
|
continue;
|
||||||
|
try {
|
||||||
|
boolean banned = DbManager.AccountQueries.GET_ACCOUNT(account.getUname()).status.equals(Enum.AccountStatus.BANNED);
|
||||||
|
if (banned) {
|
||||||
|
pc.getClientConnection().forceDisconnect();
|
||||||
|
}
|
||||||
|
}catch(Exception e){
|
||||||
|
Logger.error(e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}catch(Exception e){
|
||||||
|
Logger.error("Failed To Run Ban Multibox Abusers");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,18 +45,12 @@ public class UpdateThread implements Runnable {
|
|||||||
public void run() {
|
public void run() {
|
||||||
lastRun = System.currentTimeMillis();
|
lastRun = System.currentTimeMillis();
|
||||||
while (true) {
|
while (true) {
|
||||||
if (System.currentTimeMillis() >= lastRun + instancedelay) { // Correct condition
|
try {
|
||||||
this.processPlayerUpdate();
|
this.processPlayerUpdate();
|
||||||
lastRun = System.currentTimeMillis(); // Update lastRun after processing
|
Thread.sleep(100); // Pause for 100ms to reduce CPU usage
|
||||||
}else {
|
} catch (InterruptedException e) {
|
||||||
try {
|
Logger.error("Thread interrupted", e);
|
||||||
Thread.sleep(100); // Pause for 100ms to reduce CPU usage
|
|
||||||
} catch (InterruptedException e) {
|
|
||||||
Logger.error("Thread interrupted", e);
|
|
||||||
Thread.currentThread().interrupt();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
Thread.yield();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user