atr calculations
This commit is contained in:
@@ -49,8 +49,8 @@ public class PrintSkillsCmd extends AbstractDevCmd {
|
|||||||
+ skill.getModifiedAmount() + '('
|
+ skill.getModifiedAmount() + '('
|
||||||
+ skill.getTotalSkillPercet() + " )");
|
+ skill.getTotalSkillPercet() + " )");
|
||||||
}
|
}
|
||||||
throwbackInfo(pc, "= = = = = NEW CALCULATIONS = = = = =");
|
//throwbackInfo(pc, "= = = = = NEW CALCULATIONS = = = = =");
|
||||||
PlayerCombatStats.PrintSkillsToClient(pc);
|
// PlayerCombatStats.PrintSkillsToClient(pc);
|
||||||
} else
|
} else
|
||||||
throwbackInfo(pc, "Skills not found for player");
|
throwbackInfo(pc, "Skills not found for player");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -126,10 +126,10 @@ 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).getTotalSkillPercet();//calculateBuffedSkillLevel(skill,this.owner);//this.owner.skills.get(skill).getTotalSkillPercet();
|
skillLevel = this.owner.skills.get(skill).getModifiedAmount();//calculateBuffedSkillLevel(skill,this.owner);//this.owner.skills.get(skill).getTotalSkillPercet();
|
||||||
}
|
}
|
||||||
if(this.owner.skills.containsKey(mastery))
|
if(this.owner.skills.containsKey(mastery))
|
||||||
masteryLevel = this.owner.skills.get(mastery).getTotalSkillPercet();//calculateBuffedSkillLevel(mastery,this.owner);//this.owner.skills.get(mastery).getTotalSkillPercet();
|
masteryLevel = this.owner.skills.get(mastery).getModifiedAmount();//calculateBuffedSkillLevel(mastery,this.owner);//this.owner.skills.get(mastery).getTotalSkillPercet();
|
||||||
|
|
||||||
float stanceValue = 0.0f;
|
float stanceValue = 0.0f;
|
||||||
float atrEnchants = 0;
|
float atrEnchants = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user