Browse Source

PlayerCombatStats final

lakebane-dex-penalty
FatBoy-DOTC 1 week ago
parent
commit
09af8084b9
  1. 3
      src/engine/devcmd/cmds/PrintStatsCmd.java

3
src/engine/devcmd/cmds/PrintStatsCmd.java

@ -59,6 +59,9 @@ public class PrintStatsCmd extends AbstractDevCmd { @@ -59,6 +59,9 @@ public class PrintStatsCmd extends AbstractDevCmd {
String newline = "\r\n ";
String newOut = "Server stats for Player " + tar.getFirstName() + newline;
newOut += "HEALTH: " + tar.getHealth() + " / " + tar.getHealthMax() + newline;
newOut += "MANA: " + tar.getMana() + " / " + tar.getManaMax() + newline;
newOut += "STAMINA: " + tar.getStamina() + " / " + tar.getStaminaMax() + newline;
newOut += "Unused Stats: " + tar.getUnusedStatPoints() + newline;
newOut += "Stats Base (Modified)" + newline;
newOut += " Str: " + (int) tar.statStrBase + " (" + tar.getStatStrCurrent() + ')' + ", maxStr: " + tar.getStrMax() + newline;

Loading…
Cancel
Save