Added default ChatStat for all games to prevent my server from dying when testing

This commit is contained in:
Teddy 2016-01-11 19:35:00 +00:00
parent 02ff8bdbdb
commit 88c53bf464
64 changed files with 222 additions and 80 deletions

View File

@ -109,7 +109,7 @@ import nautilus.game.arcade.game.GameTeam;
import nautilus.game.arcade.game.games.event.EventModule; import nautilus.game.arcade.game.games.event.EventModule;
import nautilus.game.arcade.game.games.uhc.UHC; import nautilus.game.arcade.game.games.uhc.UHC;
import nautilus.game.arcade.managers.GameAchievementManager; import nautilus.game.arcade.managers.GameAchievementManager;
import nautilus.game.arcade.managers.GameChatManager; import nautilus.game.arcade.managers.chat.GameChatManager;
import nautilus.game.arcade.managers.GameCreationManager; import nautilus.game.arcade.managers.GameCreationManager;
import nautilus.game.arcade.managers.GameFlagManager; import nautilus.game.arcade.managers.GameFlagManager;
import nautilus.game.arcade.managers.GameGemManager; import nautilus.game.arcade.managers.GameGemManager;

View File

@ -273,9 +273,9 @@ public abstract class Game implements Listener
public boolean PlaySoundGameStart = true; public boolean PlaySoundGameStart = true;
// Chat Stats // Chat Stats
public final ChatStatData Kills = new ChatStatData(new String[]{"Kills"}, "Kills", true); public final ChatStatData Kills = new ChatStatData("Kills", "Kills", true);
public final ChatStatData Deaths = new ChatStatData(new String[]{"Deaths"}, "Deaths", true); public final ChatStatData Deaths = new ChatStatData("Deaths", "Deaths", true);
public final ChatStatData KDRatio = new ChatStatData(new String[]{"KDRatio"}, "KD-Ratio", true); public final ChatStatData KDRatio = new ChatStatData("KDRatio", "KD-Ratio", true);
// Gems // Gems
public double GemMultiplier = 1; public double GemMultiplier = 1;
@ -1426,6 +1426,11 @@ public abstract class Game implements Listener
} }
} }
public void registerChatStats(ChatStatData... stats)
{
Manager.getGameChatManager().setGameChatStats(stats);
}
public Collection<StatTracker<? extends Game>> getStatTrackers() public Collection<StatTracker<? extends Game>> getStatTrackers()
{ {
return _statTrackers; return _statTrackers;

View File

@ -39,7 +39,7 @@ public class BaconBrawl extends SoloGame
HungerSet = 20; HungerSet = 20;
PrepareFreeze = false; PrepareFreeze = false;
Manager.getGameChatManager().setGameChatStats(Kills, Deaths); registerChatStats(Kills);
} }
@EventHandler @EventHandler

View File

@ -58,6 +58,8 @@ public class Barbarians extends SoloGame
this.BlockBreakAllow.add(134); this.BlockBreakAllow.add(134);
this.BlockBreakAllow.add(135); this.BlockBreakAllow.add(135);
this.BlockBreakAllow.add(136); this.BlockBreakAllow.add(136);
registerChatStats(Kills);
} }
@EventHandler @EventHandler

View File

@ -58,6 +58,8 @@ public class BossBattles extends TeamGame
HungerSet = 20; HungerSet = 20;
CreatureAllowOverride = true; CreatureAllowOverride = true;
PrepareFreeze = false; PrepareFreeze = false;
registerChatStats(Kills);
} }
@EventHandler @EventHandler

View File

@ -35,6 +35,8 @@ public class BouncyBalls extends SoloGame
}); });
this.HungerSet = 20; this.HungerSet = 20;
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -233,6 +233,8 @@ public class Bridge extends TeamGame implements OreObsfucation
new KillFastStatTracker(this, 4, 10, "Rampage"), new KillFastStatTracker(this, 4, 10, "Rampage"),
new DeathBomberStatTracker(this, 5) new DeathBomberStatTracker(this, 5)
); );
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -215,6 +215,8 @@ public class Build extends SoloGame
_mobShop = new MobShop(getArcadeManager(), getArcadeManager().GetClients(), getArcadeManager().GetDonation()); _mobShop = new MobShop(getArcadeManager(), getArcadeManager().GetClients(), getArcadeManager().GetDonation());
_optionsShop = new OptionsShop(this, getArcadeManager(), getArcadeManager().GetClients(), getArcadeManager().GetDonation()); _optionsShop = new OptionsShop(this, getArcadeManager(), getArcadeManager().GetClients(), getArcadeManager().GetDonation());
_shopItem = ItemStackFactory.Instance.CreateStack(Material.DIAMOND, (byte) 0, 1, C.cGreen + "Options"); _shopItem = ItemStackFactory.Instance.CreateStack(Material.DIAMOND, (byte) 0, 1, C.cGreen + "Options");
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -70,6 +70,8 @@ public class Cards extends SoloGame
this.PrepareFreeze = false; this.PrepareFreeze = false;
_cardFactory = new CardFactory(); _cardFactory = new CardFactory();
registerChatStats();
} }
@Override @Override

View File

@ -219,6 +219,8 @@ public class CastleSiege extends TeamGame
new TeamDeathsStatTracker(this), new TeamDeathsStatTracker(this),
new TeamKillsStatTracker(this) new TeamKillsStatTracker(this)
); );
registerChatStats();
} }
@Override @Override

View File

@ -37,20 +37,20 @@ import org.bukkit.event.inventory.InventoryType;
public class ChampionsCTF extends CaptureTheFlag public class ChampionsCTF extends CaptureTheFlag
{ {
public ChampionsCTF(ArcadeManager manager) public ChampionsCTF(ArcadeManager manager)
{ {
super(manager, GameType.ChampionsCTF, super(manager, GameType.ChampionsCTF,
new Kit[] new Kit[]
{ {
new KitBrute(manager), new KitBrute(manager),
new KitRanger(manager), new KitRanger(manager),
new KitKnight(manager), new KitKnight(manager),
new KitMage(manager), new KitMage(manager),
new KitAssassin(manager), new KitAssassin(manager),
}); });
_help = new String[] _help = new String[]
{ {
"Make sure you use all of your Skill/Item Tokens", "Make sure you use all of your Skill/Item Tokens",
"Collect Resupply Chests to restock your inventory", "Collect Resupply Chests to restock your inventory",
"Customize your Class to suit your play style", "Customize your Class to suit your play style",
@ -59,7 +59,7 @@ public class ChampionsCTF extends CaptureTheFlag
"Gold/Iron Weapons deal 6 damage", "Gold/Iron Weapons deal 6 damage",
"Diamond Weapons deal 7 damage", "Diamond Weapons deal 7 damage",
}; };
Manager.GetDamage().UseSimpleWeaponDamage = false; Manager.GetDamage().UseSimpleWeaponDamage = false;
Manager.getCosmeticManager().setHideParticles(true); Manager.getCosmeticManager().setHideParticles(true);
@ -86,6 +86,8 @@ public class ChampionsCTF extends CaptureTheFlag
new ClutchStatTracker(this, "Clutch"), new ClutchStatTracker(this, "Clutch"),
new SpecialWinStatTracker(this, "SpecialWin") new SpecialWinStatTracker(this, "SpecialWin")
); );
registerChatStats();
new ChampionsFixes(this); new ChampionsFixes(this);
} }

View File

@ -78,6 +78,8 @@ public class ChampionsDominate extends Domination
new TheLongestShotStatTracker(this), new TheLongestShotStatTracker(this),
new SeismicSlamStatTracker(this) new SeismicSlamStatTracker(this)
); );
registerChatStats();
new ChampionsFixes(this); new ChampionsFixes(this);
} }

View File

@ -78,6 +78,8 @@ public class ChampionsTDM extends TeamDeathmatch
new TheLongestShotStatTracker(this), new TheLongestShotStatTracker(this),
new SeismicSlamStatTracker(this) new SeismicSlamStatTracker(this)
); );
registerChatStats();
new ChampionsFixes(this); new ChampionsFixes(this);
} }

View File

@ -152,6 +152,8 @@ public class Christmas extends SoloGame
HungerSet = 20; HungerSet = 20;
WorldTimeSet = 2000; WorldTimeSet = 2000;
PrepareFreeze = false; PrepareFreeze = false;
registerChatStats();
} }
//parse 129 19 47 48 103 86 137 56 22 45 121 14 15 16 87 88 89 153 173 172 162 //parse 129 19 47 48 103 86 137 56 22 45 121 14 15 16 87 88 89 153 173 172 162

View File

@ -73,6 +73,8 @@ public class DeathTag extends SoloGame
this.PrepareFreeze = false; this.PrepareFreeze = false;
registerStatTrackers(new ComeAtMeBroStatTracker(this)); registerStatTrackers(new ComeAtMeBroStatTracker(this));
registerChatStats();
} }
@Override @Override

View File

@ -120,6 +120,8 @@ public class DragonEscape extends SoloGame
new ParalympicsStatTracker(this), new ParalympicsStatTracker(this),
new WinMapStatTracker(this) new WinMapStatTracker(this)
); );
registerChatStats();
} }
@Override @Override

View File

@ -70,6 +70,8 @@ public class Dragons extends SoloGame
registerStatTrackers( registerStatTrackers(
new SparklezStatTracker(this) new SparklezStatTracker(this)
); );
registerChatStats();
} }
@Override @Override

View File

@ -134,6 +134,8 @@ public class Draw extends SoloGame
new KeenEyeStatTracker(this), new KeenEyeStatTracker(this),
new PureLuckStatTracker(this) new PureLuckStatTracker(this)
); );
registerChatStats();
Manager.GetChat().setThreeSecondDelay(false); Manager.GetChat().setThreeSecondDelay(false);
} }

View File

@ -163,7 +163,7 @@ public class Evolution extends SoloGame
new KillsWhileEvolvingTracker(this) new KillsWhileEvolvingTracker(this)
); );
Manager.getGameChatManager().setGameChatStats(Kills, Deaths); registerChatStats();
} }
public EvolveManager getEvolve() public EvolveManager getEvolve()

View File

@ -120,6 +120,8 @@ public class Gladiators extends SoloGame
new SwiftKillTracker(this) new SwiftKillTracker(this)
); );
registerChatStats();
_playerArenas = new HashMap<>(); _playerArenas = new HashMap<>();
_roundState = RoundState.WAITING; _roundState = RoundState.WAITING;

View File

@ -115,6 +115,8 @@ public class Gravity extends SoloGame
this.CompassEnabled = true; this.CompassEnabled = true;
this.WorldBoundaryKill = false; this.WorldBoundaryKill = false;
registerChatStats();
} }
@Override @Override

View File

@ -135,6 +135,8 @@ public class Halloween extends SoloGame
this.WorldBoundaryKill = false; this.WorldBoundaryKill = false;
this.DontAllowOverfill = true; this.DontAllowOverfill = true;
registerChatStats();
} }
@Override @Override

View File

@ -341,8 +341,15 @@ public class HideSeek extends TeamGame
Manager.GetExplosion().SetTNTSpread(false); Manager.GetExplosion().SetTNTSpread(false);
Manager.getCosmeticManager().setHideParticles(true); Manager.getCosmeticManager().setHideParticles(true);
registerStatTrackers(new HunterKillerStatTracker(this), new MeowStatTracker(this), new HunterKillerStatTracker(this), registerStatTrackers(
new HunterOfTheYearStatTracker(this), new BadHiderStatTracker(this)); new HunterKillerStatTracker(this),
new MeowStatTracker(this),
new HunterKillerStatTracker(this),
new HunterOfTheYearStatTracker(this),
new BadHiderStatTracker(this)
);
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -57,6 +57,8 @@ public class HoleInTheWall extends SoloGame
DamageFall = false; DamageFall = false;
HungerSet = 20; HungerSet = 20;
WorldTimeSet = 8000; WorldTimeSet = 8000;
registerChatStats();
} }
private ArrayList<Entry<Integer, Integer>> getWall() private ArrayList<Entry<Integer, Integer>> getWall()

View File

@ -18,23 +18,25 @@ public class Horse extends TeamGame
{ {
super(manager, GameType.Horse, super(manager, GameType.Horse,
new Kit[] new Kit[]
{ {
new KitHorseKnight(manager), new KitHorseKnight(manager),
new NullKit(manager), new NullKit(manager),
new KitDefenceArcher(manager), new KitDefenceArcher(manager),
}, },
new String[] new String[]
{ {
"Horsemen must charge the ruins", "Horsemen must charge the ruins",
"Horsemen win if they rid the ruins of Undead.", "Horsemen win if they rid the ruins of Undead.",
"", "",
"Undead must defend the ruins", "Undead must defend the ruins",
"Undead win when all Horsemen are dead.", "Undead win when all Horsemen are dead.",
"", "",
"Teams swap after game is over" "Teams swap after game is over"
}); });
registerChatStats();
} }
@Override @Override

View File

@ -74,19 +74,23 @@ public class BombLobbers extends TeamGame implements IThrown
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
public BombLobbers(ArcadeManager manager) public BombLobbers(ArcadeManager manager)
{ {
super(manager, GameType.Lobbers, new Kit[] super(manager, GameType.Lobbers,
{ new Kit[]
new KitJumper(manager), {
new KitArmorer(manager), new KitJumper(manager),
new KitPitcher(manager), new KitArmorer(manager),
new KitWaller(manager) new KitPitcher(manager),
}, new String[] new KitWaller(manager)
{ },
"Fight against your enemies using",
"the power of explosives!", new String[]
"Left click TNT to throw at your enemy.", {
"Last team alive wins!" "Fight against your enemies using",
}); "the power of explosives!",
"Left click TNT to throw at your enemy.",
"Last team alive wins!"
});
DamageFall = true; DamageFall = true;
DamageEvP = true; DamageEvP = true;
@ -110,7 +114,15 @@ public class BombLobbers extends TeamGame implements IThrown
WorldTimeSet = 6000; WorldTimeSet = 6000;
registerStatTrackers(new Tracker6Kill(this), new TrackerBlastProof(this), new TrackerNoDamage(this), new TrackerTNTThrown(this), new TrackerDirectHit(this)); registerStatTrackers(
new Tracker6Kill(this),
new TrackerBlastProof(this),
new TrackerNoDamage(this),
new TrackerTNTThrown(this),
new TrackerDirectHit(this)
);
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -58,7 +58,11 @@ public class Micro extends TeamGame
this.BlockBreak = true; this.BlockBreak = true;
this.BlockPlace = true; this.BlockPlace = true;
registerStatTrackers(new KillsWithinGameStatTracker(this, 8, "Annihilation")); registerStatTrackers(
new KillsWithinGameStatTracker(this, 8, "Annihilation")
);
registerChatStats();
} }
@Override @Override

View File

@ -74,29 +74,31 @@ public class MilkCow extends SoloGame
super(manager, GameType.MilkCow, super(manager, GameType.MilkCow,
new Kit[] new Kit[]
{ {
new KitFarmerJump(manager), new KitFarmerJump(manager),
new KitSturdyFarmhand(manager), new KitSturdyFarmhand(manager),
new NullKit(manager), new NullKit(manager),
new KitCow(manager), new KitCow(manager),
}, },
new String[] new String[]
{ {
"Farmers get 1 point for drinking milk.", "Farmers get 1 point for drinking milk.",
"You lose 5 points for dying!", "You lose 5 points for dying!",
"", "",
"Cows get 1 point for killing farmers.", "Cows get 1 point for killing farmers.",
"Defend your herd to stop farmers!", "Defend your herd to stop farmers!",
"", "",
"First player to 15 points wins!" "First player to 15 points wins!"
}); });
this.CompassEnabled = true; this.CompassEnabled = true;
this.DeathOut = false; this.DeathOut = false;
_scoreObj = Scoreboard.GetScoreboard().registerNewObjective("Milk", "dummy"); _scoreObj = Scoreboard.GetScoreboard().registerNewObjective("Milk", "dummy");
_scoreObj.setDisplaySlot(DisplaySlot.BELOW_NAME); _scoreObj.setDisplaySlot(DisplaySlot.BELOW_NAME);
registerChatStats();
} }
@Override @Override

View File

@ -310,14 +310,14 @@ public class MineStrike extends TeamGame
new TeamKillsStatTracker(this) new TeamKillsStatTracker(this)
); );
Manager.getGameChatManager().setGameChatStats( registerChatStats(
Kills, Kills,
new ChatStatData(new String[]{"BoomHeadshot"}, "Headshots", true), new ChatStatData("BoomHeadshot", "Headshots", true),
new ChatStatData().blankLine(), new ChatStatData().blankLine(),
Deaths, Deaths,
KDRatio, KDRatio,
new ChatStatData().blankLine(), new ChatStatData().blankLine(),
new ChatStatData(new String[]{null}, C.cGray + C.Italics + "Testing stage", false) new ChatStatData().plainText(C.cGray + C.Italics + "Testing stage")
); );
} }

View File

@ -84,6 +84,8 @@ public class MineWare extends SoloGame
Manager.GetCreature().SetDisableCustomDrops(true); Manager.GetCreature().SetDisableCustomDrops(true);
PopulateOrders(); PopulateOrders();
registerChatStats();
} }
@Override @Override

View File

@ -31,6 +31,8 @@ public class Moba extends TeamGame
this.DeathSpectateSecs = 8; this.DeathSpectateSecs = 8;
this.HungerSet = 20; this.HungerSet = 20;
registerChatStats();
} }
@Override @Override

View File

@ -63,6 +63,8 @@ public class MonsterLeague extends TeamGame
this.TeamArmor = true; this.TeamArmor = true;
this.TeamArmorHotbar = true; this.TeamArmorHotbar = true;
registerChatStats();
} }
//Supports anywhere from 2-4 teams on a map //Supports anywhere from 2-4 teams on a map

View File

@ -101,6 +101,8 @@ public class MonsterMaze extends SoloGame
new SurvivePast10thSafepadTracker(this) new SurvivePast10thSafepadTracker(this)
); );
//_maze = new SnowmanMaze(this, WorldData.GetDataLocs("GRAY")/*, WorldData.GetCustomLocs("103")*/); //_maze = new SnowmanMaze(this, WorldData.GetDataLocs("GRAY")/*, WorldData.GetCustomLocs("103")*/);
registerChatStats();
} }
public Maze getMaze() public Maze getMaze()

View File

@ -88,6 +88,8 @@ public class OldMineWare extends SoloGame
InventoryClick = true; InventoryClick = true;
PopulateOrders(); PopulateOrders();
registerChatStats();
} }
@Override @Override

View File

@ -114,6 +114,8 @@ public class Paintball extends TeamGame
new WinFastStatTracker(this, 30, "Speedrunner"), new WinFastStatTracker(this, 30, "Speedrunner"),
new LastStandStatTracker(this) new LastStandStatTracker(this)
); );
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -92,6 +92,8 @@ public class Quiver extends SoloGame
new SharpShooterStatTracker(this), new SharpShooterStatTracker(this),
new WinWithoutBowStatTracker(this, "WhatsABow") new WinWithoutBowStatTracker(this, "WhatsABow")
); );
registerChatStats();
} }
@EventHandler(priority = EventPriority.HIGH) @EventHandler(priority = EventPriority.HIGH)

View File

@ -65,6 +65,8 @@ public class QuiverTeams extends TeamGame
this.TeamArmor = true; this.TeamArmor = true;
this.TeamArmorHotbar = true; this.TeamArmorHotbar = true;
registerChatStats();
} }
@EventHandler(priority = EventPriority.HIGH) @EventHandler(priority = EventPriority.HIGH)

View File

@ -66,6 +66,8 @@ public class Runner extends SoloGame implements IThrown
this.PrepareFreeze = false; this.PrepareFreeze = false;
registerStatTrackers(new DistanceTraveledStatTracker(this, "MarathonRunner")); registerStatTrackers(new DistanceTraveledStatTracker(this, "MarathonRunner"));
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -72,6 +72,8 @@ public class SearchAndDestroy extends TeamGame
DamageSelf = false; DamageSelf = false;
Manager.GetDamage().GetCombatManager().setUseWeaponName(AttackReason.DefaultWeaponName); Manager.GetDamage().GetCombatManager().setUseWeaponName(AttackReason.DefaultWeaponName);
registerChatStats();
} }
public ArrayList<TeamBomb> getBombs() public ArrayList<TeamBomb> getBombs()

View File

@ -155,6 +155,8 @@ public class SheepGame extends TeamGame
new SheepDropStatTracker(this), new SheepDropStatTracker(this),
new WinWithSheepStatTracker(this) new WinWithSheepStatTracker(this)
); );
registerChatStats();
} }
@Override @Override

View File

@ -35,6 +35,8 @@ public class SoloSkywars extends Skywars
}); });
this.DamageTeamSelf = true; this.DamageTeamSelf = true;
registerChatStats();
} }

View File

@ -53,6 +53,8 @@ public class TeamSkywars extends Skywars
this.DamageTeamSelf = false; this.DamageTeamSelf = false;
this.DontAllowOverfill = true; this.DontAllowOverfill = true;
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -32,6 +32,8 @@ public class SoloSuperSmash extends SuperSmash
}); });
this.DamageTeamSelf = true; this.DamageTeamSelf = true;
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -55,6 +55,8 @@ public class SuperSmashDominate extends Domination
new KitMagmaCube(manager), new KitMagmaCube(manager),
}); });
registerChatStats();
} }
@EventHandler(priority = EventPriority.LOWEST) @EventHandler(priority = EventPriority.LOWEST)

View File

@ -53,6 +53,8 @@ public class TeamSuperSmash extends SuperSmash
this.TeamArmorHotbar = true; this.TeamArmorHotbar = true;
this.DontAllowOverfill = true; this.DontAllowOverfill = true;
registerChatStats();
} }
@Override @Override

View File

@ -157,6 +157,8 @@ public class Snake extends SoloGame
new ChooChooStatTracker(this), new ChooChooStatTracker(this),
new SlimySheepStatTracker(this) new SlimySheepStatTracker(this)
); );
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -92,6 +92,8 @@ public class SneakyAssassins extends SoloGame
new RevealStatTracker(this, "ISeeYou"), new RevealStatTracker(this, "ISeeYou"),
_killEntityStatTracker _killEntityStatTracker
); );
registerChatStats();
} }
@Override @Override

View File

@ -104,6 +104,8 @@ public class SnowFight extends TeamGame
this.TeamArmor = true; this.TeamArmor = true;
this.TeamArmorHotbar = true; this.TeamArmorHotbar = true;
registerChatStats();
// this.WorldWeatherEnabled = true; // this.WorldWeatherEnabled = true;
// this.WorldTimeSet = 4000; // this.WorldTimeSet = 4000;

View File

@ -62,6 +62,8 @@ public class Spleef extends SoloGame
this.PrepareFreeze = false; this.PrepareFreeze = false;
registerStatTrackers(new SpleefBlockDestroyStatTracker(this)); registerStatTrackers(new SpleefBlockDestroyStatTracker(this));
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -59,6 +59,8 @@ public class SpleefTeams extends TeamGame
this.TeamArmor = true; this.TeamArmor = true;
this.TeamArmorHotbar = true; this.TeamArmorHotbar = true;
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -50,6 +50,8 @@ public class SquidShooter extends SoloGame
this.PrepareFreeze = false; this.PrepareFreeze = false;
this.CompassEnabled = true; this.CompassEnabled = true;
this.KitRegisterState = GameState.Prepare; this.KitRegisterState = GameState.Prepare;
registerChatStats();
} }
@EventHandler @EventHandler
public void Death(CombatDeathEvent event) public void Death(CombatDeathEvent event)

View File

@ -54,6 +54,8 @@ public class Stacker extends SoloGame implements IThrown
"Players lose 5 stacked animals if they get hit.", "Players lose 5 stacked animals if they get hit.",
"First to stack 16 high wins!" "First to stack 16 high wins!"
}); });
registerChatStats();
} }
@EventHandler @EventHandler

View File

@ -39,6 +39,8 @@ public class SoloSurvivalGames extends SurvivalGames
}); });
this.DamageTeamSelf = true; this.DamageTeamSelf = true;
registerChatStats();
} }

View File

@ -255,6 +255,8 @@ public class SurvivalGamesTeams extends TeamGame
//Tournament //Tournament
if (Manager.IsTournamentServer()) if (Manager.IsTournamentServer())
QuitOut = false; QuitOut = false;
registerChatStats();
} }
@Override @Override

View File

@ -59,6 +59,8 @@ public class TeamSurvivalGames extends SurvivalGames
this.DamageTeamSelf = false; this.DamageTeamSelf = false;
this.DontAllowOverfill = true; this.DontAllowOverfill = true;
registerChatStats();
} }

View File

@ -75,6 +75,8 @@ public class Tug extends TeamGame
this.DeathOut = false; this.DeathOut = false;
this.DeathSpectateSecs = 20; this.DeathSpectateSecs = 20;
registerChatStats();
} }
@Override @Override

View File

@ -153,6 +153,8 @@ public class TurfForts extends TeamGame
new BehindEnemyLinesStatTracker(this), new BehindEnemyLinesStatTracker(this),
new TheComebackStatTracker(this) new TheComebackStatTracker(this)
); );
registerChatStats();
} }
@Override @Override

View File

@ -167,6 +167,8 @@ public class TypeWars extends TeamGame
new KillsStatTracker(this), new KillsStatTracker(this),
new TimeInGameTracker(this) new TimeInGameTracker(this)
); );
registerChatStats();
manager.GetCreature().SetDisableCustomDrops(true); manager.GetCreature().SetDisableCustomDrops(true);
manager.GetChat().setThreeSecondDelay(false); manager.GetChat().setThreeSecondDelay(false);

View File

@ -207,6 +207,8 @@ public class UHC extends TeamGame
_createTime = System.currentTimeMillis(); _createTime = System.currentTimeMillis();
_serverTime = Utility.currentTimeMillis(); _serverTime = Utility.currentTimeMillis();
registerChatStats();
} }
@Override @Override

View File

@ -148,6 +148,8 @@ public class WitherGame extends TeamGame implements IBlockRestorer
new TeamDeathsStatTracker(this), new TeamDeathsStatTracker(this),
new TeamKillsStatTracker(this) new TeamKillsStatTracker(this)
); );
registerChatStats();
} }
@Override @Override

View File

@ -166,6 +166,8 @@ public class Wizards extends SoloGame
SoupEnabled = false; SoupEnabled = false;
DamageTeamSelf = true; DamageTeamSelf = true;
registerChatStats();
Manager.getCosmeticManager().setHideParticles(true); Manager.getCosmeticManager().setHideParticles(true);
// Manager.GetDamage().GetCombatManager().setUseWeaponName(AttackReason.DefaultWeaponName); // Manager.GetDamage().GetCombatManager().setUseWeaponName(AttackReason.DefaultWeaponName);

View File

@ -71,6 +71,8 @@ public class ZombieSurvival extends SoloGame
this.HungerSet = 20; this.HungerSet = 20;
this.CompassEnabled = true; this.CompassEnabled = true;
registerChatStats();
} }
@Override @Override

View File

@ -1,13 +1,11 @@
package nautilus.game.arcade.managers.chat; package nautilus.game.arcade.managers.chat;
import mineplex.core.chat.Chat;
/** /**
* Created by TeddyDev on 10/01/2016. * Created by TeddyDev on 10/01/2016.
*/ */
public class ChatStatData public class ChatStatData
{ {
private String[] _stat; private String _stat;
private String _display; private String _display;
private boolean _isValue; private boolean _isValue;
@ -16,7 +14,7 @@ public class ChatStatData
} }
public ChatStatData(String[] stat, String display, boolean isValue) public ChatStatData(String stat, String display, boolean isValue)
{ {
_stat = stat; _stat = stat;
_display = display; _display = display;
@ -25,14 +23,23 @@ public class ChatStatData
public ChatStatData blankLine() public ChatStatData blankLine()
{ {
_stat = new String[]{null}; _stat = null;
_display = " "; _display = " ";
_isValue = false; _isValue = false;
return this; return this;
} }
public String[] getStat() public ChatStatData plainText(String text)
{
_stat = null;
_display = text;
_isValue = false;
return this;
}
public String getStat()
{ {
return _stat; return _stat;
} }

View File

@ -1,4 +1,4 @@
package nautilus.game.arcade.managers; package nautilus.game.arcade.managers.chat;
import java.text.DecimalFormat; import java.text.DecimalFormat;
import java.util.AbstractMap; import java.util.AbstractMap;
@ -269,7 +269,6 @@ public class GameChatManager implements Listener
_chatStats = new LinkedList<ChatStatData>(); _chatStats = new LinkedList<ChatStatData>();
for(ChatStatData chatStat : stats) for(ChatStatData chatStat : stats)
{ {
System.out.println(chatStat.getStat());
_chatStats.add(chatStat); _chatStats.add(chatStat);
} }
} }
@ -294,7 +293,7 @@ public class GameChatManager implements Listener
} }
ChatStatData chatStatData = hoverText.get(i); ChatStatData chatStatData = hoverText.get(i);
String display = (chatStatData.getDisplay() == null ? chatStatData.getStat()[0] : chatStatData.getDisplay()); String display = (chatStatData.getDisplay() == null ? chatStatData.getStat() : chatStatData.getDisplay());
if(!chatStatData.isValue()) if(!chatStatData.isValue())
{ {
@ -302,7 +301,7 @@ public class GameChatManager implements Listener
continue; continue;
} }
if (chatStatData.getStat()[0].equalsIgnoreCase("kdratio")) if (chatStatData.getStat().equalsIgnoreCase("kdratio"))
{ {
int kills; int kills;
int deaths; int deaths;
@ -321,9 +320,9 @@ public class GameChatManager implements Listener
continue; continue;
} }
if (game.GetStats().get(player).containsKey(gameName + "." + chatStatData.getStat()[0])) if (game.GetStats().get(player).containsKey(gameName + "." + chatStatData.getStat()))
{ {
temp.add(new AbstractMap.SimpleEntry<String, String>(display + ": ", (game.GetStats().get(player).get(gameName + "." + chatStatData.getStat()[0]).toString()))); temp.add(new AbstractMap.SimpleEntry<String, String>(display + ": ", (game.GetStats().get(player).get(gameName + "." + chatStatData.getStat()).toString())));
} }
else else
{ {