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

5e Sheet Move Macros From Sheet to Token Action

Hello, I'm poring over the documentation looking for a way to move sheet macros (initiative, attack, etc.) to token macro actions. Is there a way to copy the macro text into the sheet abilities area? Thank you, Scott
Yes, if you use the macro button in the sheet and then in the chat pane press the up arrow it'll give you the last action in text; then you can cut & paste that into a token ability; so Perception check can be done like this (: &{template:5eDefault} {{ability=1}} {{title=Perception (WIS)}} {{subheader=@{Moonshadow|character_name}}} {{subheaderright=Ability check}} {{rollname=Result}} {{roll=[[ 1d20 + @{Moonshadow|perception} + (@{Moonshadow|global_check_bonus}) ]]}} {{rolladv=[[ 1d20 + @{Moonshadow|perception} + (@{Moonshadow|global_check_bonus}) ]]}} @{Moonshadow|classactionperception} Probably then you can switch out the character's name and replace it with @{selected|. . . and make it generic for your players to use
1430002179

Edited 1430002208
Kryx
Pro
Sheet Author
API Scripter
If I understand correctly you can reference the rolls on the sheet. Put these bits of code into the token area. Make sure you don't name your token abilities the same as the sheet! For attacks: Melee 1-6 %{Gil|MeleeAttack1} %{Gil|MeleeAttack2} Ranged 1-6 %{Gil|RangedAttack1} %{Gil|RangedAttack2} Skills: %{Gil|Stealth_Check} %{Gil|Athletics_Check} %{Gil|AnimalHandling_Check} Initiative: %{Gil|Initiative} Death Saves: %{Gil|Death_Saving_Throw} Saves: %{Gil|Strength_Save} Checks: %{Gil|Basic_Strength_Check} HD rolling: %{Gil|Use_HD_d12} Names are the same on the 5e sheet and the 5e Shaped sheet.
Perfect! Thanks so much!