ebertran Lieutenant Commander
Joined: 14 Jul 2005 Posts: 202 Location: Miami, FL
|
Posted: Mon Dec 26, 2016 2:10 pm Post subject: Roll20 macro for tracking health on specific tokens |
|
|
Hey, thought someone could get use out of this...
So I track health on roll20 using color codes (using roll20's aura tool)... and I have a macro I use to make it easy. Using a dropdown box to select the level of injury, it then generates a ring of color around the token. The DEAD selection puts a huge red X across the token and animates a bit of blood splatter as well.
The background on the image is a custom playmat I designed for my SW games, where I have some of tye rules there at a glance.
In order for this macro to work, you need the TokenMod API script running, which is not part of the free subscription to roll20.
Here's the macro, which I use as a token action:
!token-mod --set ?{Health Status|
Full Health, aura2_radius# |
Stunned, aura2_radius#1 aura2_color#fdff00 |
Wounded, aura2_radius#1 aura2_color#ff7400 |
Wounded Twice, aura2_radius#1 aura2_color#003eb2 | Incapacitated, aura2_radius#1 aura2_color#cf5cd0 |
Mortally Wounded, aura2_radius#1 aura2_color#ff0040 |
Dead, statusmarkers#dead
/desc @{selected|token_name} dies!
/fx splatter-blood @{selected|token_id} @{selected|token_id}
/fx glow-blood @{selected|token_id} @{selected|token_id}
/fx bubbling-blood @{selected|token_id} @{selected|token_id}
} |
|