I've noticed that some repeating attributes can be referenced from the chat, but not from the API. For example, I'm using the 5E Shaped Character sheet, and in the chat window I can enter: input: @{Zzzax|repeating_spellbooklevel1_-KD0r0iG5mJQkV1mYgSn_spell_var_emote}
output: {{emote=}} However, if use `sendChat("Zzzax", "@{Zzzax|repeating_spellbooklevel1_-KD0r0iG5mJQkV1mYgSn_spell_var_emote}")` within a script, I get the error: Error: Unable to find attribute named
repeating_spellbooklevel1_-KD0r0iG5mJQkV1mYgSn_spell_var_emote for
character Zzzax(-K89cK2F-k7OcZp2cETQ) in chat command. This is far from the only attribute I've found with this problem. I wouldn't really care, except I'm trying to work around a similar issue with repeating abilities, since I can use the chat window to use repeating abilities input: %{Zzzax|repeating_spellbooklevel1_-KD0r0iG5mJQkV1mYgSn_SpellCast}
output: ... (properly templated output) ...
but again, not the API, as `sendChat("Zzzax", "%{Zzzax|repeating_spellbooklevel1_-KD0r0iG5mJQkV1mYgSn_SpellCast}")` gives me the error ERROR: Unable to find ability repeating_spellbooklevel1_SpellCast for character Zzzax
I've tried using the new `$0` syntax instead of the UUID, but that doesn't seem to make a difference. I've also tried creating a wrapper ability that calls `%{Zzzax|repeating_spellbooklevel1_-KD0r0iG5mJQkV1mYgSn_SpellCast}`, but even though `%{Zzzax|wrapper}` works in the chat pane, `sendChat("Zzzax", "%{Zzzax|wrapper}")` produces ERROR: Unable to find ability repeating_spellbooklevel1_SpellCast for character Zzzax