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 .
×
May your rolls be merry + bright! 🎄
Create a free account

Can I find a macro name created by repeating session in custom sheet?

Before question, thanks to reply to: <a href="https://app.roll20.net/forum/permalink/7636310" rel="nofollow">https://app.roll20.net/forum/permalink/7636310</a> &nbsp; It's so hard for me to make skill macro directly as token action in repeating session. So, instead, I want to find a macro's name created from that session, for setting as token action with simple name. How can I find that? Or, does it require API?
1564107844

Edited 1564107865
The Aaron
Roll20 Production Team
API Scripter
There's a few steps here. 1) Find the Row ID -- right click the repeating row and inspect, then look for the data-rowid 2) Find the Repeating section name -- look for data-groupname 3) Find the name of the roll you want 4) Character ID using @{selected|character_id} Then construct that in the form: %{&lt;repeating name&gt;_&lt;row id&gt;_&lt;roll name&gt;} so, for the images above, it would be: %{-LeZGdBPOrACYMwHGJiV|repeating_offense_-ledlctrby6asbihtwpk_roll} Put that in a macro or ability, and triggering it will cause the repeating row's button to be activated and do the roll.
Reapint name
1564111771

Edited 1564112673
[edit] THANKS!! Now I can use that easy!! Have A Nice Day!! The Aaron said: There's a few steps here. 1) Find the Row ID -- right click the repeating row and inspect, then look for the data-rowid 2) Find the Repeating section name -- look for data-groupname 3) Find the name of the roll you want 4) Character ID using @{selected|character_id} Then construct that in the form: %{&lt;repeating name&gt;_&lt;row id&gt;_&lt;roll name&gt;} so, for the images above, it would be: %{-LeZGdBPOrACYMwHGJiV|repeating_offense_-ledlctrby6asbihtwpk_roll} Put that in a macro or ability, and triggering it will cause the repeating row's button to be activated and do the roll.