Pillars of Eternity
0 of 0

File information

Last updated

Original upload

Created by

veyn

Uploaded by

veyn

Virus scan

Safe to use

Tags for this mod

About this mod

Adds more information to combat tooltip and combat log.

Permissions and credits
Increase the amount of information about the state of the combat exposed to the user interface:
  • Added attack/recovery/reload timers to the tooltip in top-left corner. In some cases, the timer is red - for attack/cast it means that action can't be interrupted anymore, for recovery it means that recovery timer is paused (usually due to active CC, like paralysis).
  • Added detailed breakdown of the accuracy, defense, damage, damage resistance and damage resistance bypass to the tooltip shown when hovering over combat log message.

Install instructions:
  • If you don't have it already, grab Patchwork Launcher and follow User's guide to set it up.
  • Put AppInfo.dll from the mod next to the launcher executable (if it's already there - this happens if you use other mods - you can skip this).
  • In the launcher UI, select Active Mods -> Add -> select path to the mod DLL.

Unfortunately, I couldn't create a timer for casts. The reason for that is that both casts and attacks are actually animation-driven; while animations for attacks are simple (single clip of a well-known duration), this is not the case for casts - they usually have complicated animations with transitions. Unfortunately, Unity (at least of the version used by PoE) provides extremely limited scripting API to inspect animations (neither state transitions nor events can be queried).

Note that this design of animation-driven cast times has an interesting implication for the recovery time calculations. Usually recovery time is proportional to attack time. For spells, it is actually proportional to the duration of the first piece of cast animation. This can easily be seen by e.g. looking at how cipher's Mental Binding works: it has relatively long cast time, but extremely short (~0.2 sec) recovery time - this is because actual casting animation consists of a short "introduction" clip followed by long "casting" clip. I'm not sure whether this is a bug or an intended effect.

Sources of all my PoE mods can be found on github.

Changelog:
  • 1.1: fixed a bug with combat log breakdown for chants, fixed ugly "drift" bug that sometimes happened inside tooltips