Is there any to add an "if" function to a macro, giving it the ability to skip over a section if its not applicable? Currently, I'm using this macro as a status check for tokens. It works fine for PCs, but it breaks on NPCs because they don't have a Current HP/Max HP section. &{template:npcaction} {{name=Staus Check}} {{rname=@{selected|token_name}}} {{description=*HP* [[@{selected|hp}]] / [[@{selected|hp|max}]] *AC* [[@{selected|ac}]]}} Without having to just make a new Macro for NPC token, is there any way I can add a function to the macro to skip over the [[@{selected|hp}]] when its not applicable?