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 .
×
Create a free account

What is all this stuff?

1609539306

Edited 1609539332
When i click on melf's acid arrow in the SPells page of a character sheet, it sends this mess: %{-MOPlY28k42X4WVLNHYc|repeating_attack_-MPznjFzcA1X2fOI4q4p_attack} What is: "MOPlY28k42X4WVLNHYc"? What is: "MPznjFzcA1X2fOI4q4p"?
1609542607

Edited 1609542672
Jordan C.
Pro
API Scripter
Nearly everything in the game has a unique ID, which is what those are. The first one is the ID of the character that the command belongs to. When creating a similar command, it can often be replace with the character_name . The second is the ID for the repeating attack, which can often be replaced with its position among the other repeating attacks (e.g. something like %{ character_name |repeating_attack_ $1 _attack} where "$1" is the second attack in that repeating section.) The reason its so complex is a repeating action has to have a unique ID that differs from everything  in the game, such as a rollable table item or a card in a deck.
It looks like the player deleted the associated entry in the Attacks and Spellcasting section of the sheet, so it's trying to activate something that is no longer there. If they (or you) open the edit function of the spell and change its output from Attack to Spellcard and back again, that should fix it as it will recreate an attack entry.
Thanks