Hello, I'm working on a first character sheet and having some issues with targeting sheet Abilities. What I want to do is have a button on a character's sheet that references/triggers an Ability on their sheet. In this example, I have a sheet button that I want to have trigger the "CarefulRoll" ability. The wiki shows an example using CharName, ie. "%{CharName|CarefulRoll}" - but this only works if I rename this character to be called "CharName". I want these buttons to work for all of my 4 player characters, each of whom will have the same Abilities on their sheets, regardless of their sheet names. However, just plain trying "%{CarefulRoll}" doesn't work either. How do I dynamically reference the current character? Here's the button code I've tried so far: (not sure name field really matters) 1. <button type='roll' value='%{CharName|CarefulRoll}'></button> 2. <button type='roll' name='roll_CarefulButton' value='%{CharName|CarefulRoll}'></button> 3. <button type='roll' value='%{CarefulRoll}'></button> 4. <button type='roll' name='roll_CarefulButton' value='%{CarefulRoll}'></button> 5. <button type='roll' value='%{attr_character_name|CarefulRoll}'></button> 6. <button type='roll' value="%{@{character_name}|CarefulRoll}"></button> Any suggestions? Thanks.