
So using a custom made sheet. On this sheet I have repeating fields on skills and weapons. The skills are called repeating_skill and they have two values that holds the total skill value: a select box holding a reference to the attribute the skill is using (e.g. @{strength} ) called attr_skillattribute and then the skill value called attr_skillvalue . I have two skills that are interesting which is skill number 6 and 7 (if you count the first one as 0). As I understand it to access the value of skill 6 and 7 I can use the following: @{selected|repeating_skill_6_attr_skillattribute}+@{selected|repeating_skill_6_attr_skillvalue} to get the total skill value. I have place this in the repeating_weapon list as another select called: attr_weaponskill all so I can easily as I add a weapon to the sheet just pick what skill this weapon is using and then automatically set the correct skill value to the weapon. In addition to this the weapon then as a bonus value which I call attr_weaponbonus . Ok now to my real question. When I make the macro, from as I understand all of this (which since I get an error I must miss something) I should use the following if I want to use the first weapon in the repeating weapon list: /roll @{selected|repeating_weapon_0_attr_weaponskill} + @{selected|repeating_weapon_0_attr_weaponbonus}d6>6 The macro is to add the two values and then roll that total number of d6, if you roll a 6 that is a success. When I use this macro now I get the error message: No attribute was found for @{selected|repeating_weapon_0_attr_weaponskill} No attribute was found for @{selected|repeating_weapon_0_attr_weaponbonus} There was an error with your formula. Please try again. I have made sure that all fields called for has values at least 0. Please help.