Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Combining action macro with /fx commands inside macro

Hey guys, I'm trying to use my action macro of (%{selected|repeating_npcaction_$0_npc_action} ) but i want to add an /fx that goes off at the same time. I'm failing with the macro structure. I want to do this when i hit the macro to attack. /fx beam-fire @{target|Me|token_id} @{target|Target1|token_id} How do i add it in the macro? Thanks!
The /fx is a command and thus needs to be on a separate line from the call for the roll. You should be able make a macro with the two lines %{selected|repeating_npcaction_$0_npc_action} /fx beam-fire @{selected|token_id} @{target|Target1|token_id} The macro will execute them in sequence.
Oh Sweet Christmas!  thanks!