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 .
×

Using a token action to activate a character sheet macro issue

Hi All I am using the 3.5 DnD character sheets. I am fairly new and have been through a few topics to no avail, I have been wanting to link character sheet rolls(Macros) to a token action. I have been successful utilising the following snippet in the Abilities section. " @{weapon1attack} " (Without quotes) This has allowed me to use the Macro on the character sheet by the name of "weapon1attack" which has worked out great as my players can now just click their Token action button without having to open their character sheet. Most of the macros link without issue. However, the only issue I have been having is trying to link the spell macos as follows. "@{spellcast01}" (Without quotes) This instead results in a response of Character Name|spellcast01 Any thoughts or suggestions? Much appreciated.
1434924339
Diana P
Pro
Sheet Author
The spells are in a repeating section so need to be accessed slightly differently. the syntax for them is: @{repeating_spellsXY_Z_spellcastXY} where X is the section number/spell level (ie 0, 1, 2, through 10), Y is 1 for the left side (labeled Divine) and 2 for the right side (labeled Arcane), and Z is the row index starting at zero. for a level 0 divine spell in the first slot, it would be: @{repeating_spells01_0_spellcast01} and for a section 10 arcane spell (the slots labeled spell-like abilities) in the first slot it would be @{repeating_spells102_0_spellcast102} Alternately, you could just copy the contents of the spell macro and put that into your ability/macro. Hope that helps.
Hi Diana Many thanks for the response, This was exactly what i'm looking for. Thank you for the assistance. I'll let you know how it goes.