The Aaron said: Good question on the attacks and spells. I know it's possible, but I don't use the OGL, so I don't know how off the top of my head. There are two things at work here. 1) Getting it to look like the right buttons: This is a matter of having the link in the right place in the OGL Roll Template. I don't know precisely what that looks like, but if you execute something from the sheet that is a good example of how you want it to look, you can push up in the chat command box and get the output that was sent, then find the thing that looked right and extrapolate. It will begin with a different template, something like &{template:5eogl}{{ ... }} or some such. 2) Getting the right link: Do the above with something that gives you a link. A good example is when you have the roll and damage separate such that you check the roll of an attack first, then click something to make it show the damage. (I'm 99% sure Steve added the [label](~ID|Action) syntax explicitly to be able to do this.) That should give you an idea of how to reference an ability that is on the character sheet. It will have something to do with the repeating row id, and probably depends a bit on the internal caching of ability commands. The best I can say to that is "Good luck!" Hope that helps. Ability commands are part of the roll template CSS. You'd need to use a roll template that has the button formatting you like. For example, the sheet I'm working, to get the Ability Command buttons to not be pink I had to add this to the roll template CSS: .sheet-rolltemplate-roll .sheet-templateButton > a[href^="~"], .sheet-rolltemplate-damage .sheet-templateButton > a[href^="~"] { background-color: #900C3F; font-weight: bold; } And the Roll Template HTML: {{#button}} <div class="sheet-templateButton"> {{DmgRoll}} </div> {{/button}} So, you'll need to find the template that has the appropriate CSS and you'll also want to check if there's a special way you need to call the template for the button to be included with the proper formatting... You may need to look on GitHub and check out the HTML and CSS code for the sheet. The easies way to sift through it would be search in the CSS for [href^ to find the class(es) where the button style is defined. and then search the HTML for the class to see how it's used.