Interested in following along with development of any of my modules? Join the Discord server.
A module that allows users to embed macros directly into effects. These macros are then called automatically when the appropriate trigger happens. The options are:
- When an effect is created.
- When an effect is deleted.
- When an effect is toggled (on, off, or both).
- When the actor who has the effect starts their turn.
- When the actor who has the effect ends their turn.
- At the start of any combatant's turn.
- At the start of every round.
- At the end of every round.
- When the actor who has the effect is marked defeated in combat.
- When combat is started.
- When combat is ended.
An effect can have a macro of any of these types, not just one. There is also the static 'never' type meant for being explicitly called by other scripts. This type is never called automatically.
Macros are added in the ActiveEffect config. Selecting the type of trigger and clicking 'Add Macro' (or 'Edit Macro' for an existing macro) opens a macro editor. When an embedded macro is triggered, it is executed for the owner of the actor who has the effect. If no such owner, then it is executed as if by the GM.
The module will automatically iterate over all effects that currently affect the actor.
By default, these variables are pre-defined in any effect macro.
effect
: The effect itself.actor
: The actor who owns the effect (even if the effect is on an item). If no actor, thennull
.character
: The user's assigned actor. If no assigned actor, thennull
.token
: If the actor is synthetic (unlinked), thentoken
is the is the token placeable on the actor's scene, otherwise the first token found on the currently viewed scene belonging toactor
. If none found, thennull
.scene
: The scene on whichtoken
is embedded. If there is no token, then the currently active scene is used. If no scene, thennull
.origin
: The document thatActiveEffect#origin
points to. If no such thing, thennull
.speaker
: The 'speaker' object normally used in chat messages, speaking as theactor
if they exist.item
: If the effect is on an item and not an actor, this is that, otherwisenull
.
An async function is available:
game.modules.get("effectmacro").api.callMacro(effect, type="never", context={})
which calls the macro of that type off the effect, with the added optional context which can be referred to as this
.
The module works in every system that has Active Effect support, however it can leverage system-specific hooks as well, if added. These are the system-specific hooks added so far:
dnd5e
. When you make an attack roll (dnd5e.rollAttack
), when you roll damage (dnd5e.rollDamage
), when you make a saving throw/death saving throw (dnd5e.rollAbilitySave
anddnd5e.rollDeathSave
), and when you make an ability check, skill check, tool check (dnd5e.rollAbilityTest
,dnd5e.rollSkill
,dnd5e.rollToolCheck
), or when you take a rest (dnd5e.shortRest
,dnd5e.longRest
), or an actor is healed or damaged (dnd5e.damageActor
,dnd5e.healActor
). The arguments passed to the system hooks are passed to the macro as well and can be accessed withthis
.