- Хроники
- Chaotic Throne: High Five
- Исходники
- Присутствуют
- Сборка
- other
Всем привет. Суть вопроса в заголовке. Не могу вывести формулу никак. HP 100% - макс. При ударах соответственно уменьшается.
Вот некоторые переменные
double hp_reduced = target.getMaxHp() - target.getCurrentHp();
double hp_reduced = actor.getMaxHp() - actor.getCurrentHp();
double hp_precent = actor.getCurrentHpPercents();
double target_hp_precent = target.getCurrentHpPercents();
double actor_hp_precent = actor.getCurrentHpPercents();
При установке _npc.getCurrentHpPercents() показывает значение 100% начальное, но при дамаге оно неизменно
Java:
writeS(title + " - HP " + new DecimalFormat("#.##").format((ТУТ ФОРМУЛА) + "%"); // visible title
Вот некоторые переменные
double hp_reduced = target.getMaxHp() - target.getCurrentHp();
double hp_reduced = actor.getMaxHp() - actor.getCurrentHp();
double hp_precent = actor.getCurrentHpPercents();
double target_hp_precent = target.getCurrentHpPercents();
double actor_hp_precent = actor.getCurrentHpPercents();
При установке _npc.getCurrentHpPercents() показывает значение 100% начальное, но при дамаге оно неизменно