
Do you have a moment to help me understand how to template a tokenmod command to cause a token to emit bright light 10, dim light 10, and have a color of html color FF3F33, as an example?
Thanks
Do you have a moment to help me understand how to template a tokenmod command to cause a token to emit bright light 10, dim light 10, and have a color of html color FF3F33, as an example?
Thanks
I use this macro to set a token to have the properties that you specified. Run the macro, and the line . --ids @{target|Target 1|token_id} will cause it to prompt you to select the token. The line has_directional_bright_light|off and night_vision|off turns off those properties in case they were previously in effect for that token.
!token-mod {{
--set
emits_bright_light|on
bright_light_distance|10
emits_low_light|on
low_light_distance|10
light_color|#ff3ff33
has_directional_bright_light|off
night_vision|off
--ids @{target|Target 1|token_id}
}}