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

Macro Saving Shots

1693310792

Edited 1693311124
Good Afternoon, I'm struggling with a problem with the saving throw macro. Currently I use a macro which, once selected, gives me the list of which statistic I need (strength, dexterity etc. etc.) I select the statistic and it checks me with advantage on that statistic. The problem is that the proficiency bonus doesn't count and this isn't correct, can you tell me where is the mistake? I'll leave you below the macro I'm using. This macro is not mine, I found it on the internet /w gm @{selected|wtype}&{template:default} {{name=Ability Score for @{selected|character_name}}} {{?{Ability Score   |  Forza, Forza +@{selected|strength_mod}@{selected|jack_bonus}=[[@{selected|d20}+@{selected|strength_mod}@{selected|jack_bonus}]] - [[@{selected|d20}+@{selected|strength_mod}@{selected|jack_bonus}]]   | Destrezza, Destrezza +@{selected|dexterity_mod}@{selected|jack_bonus}=[[@{selected|d20}+@{selected|dexterity_mod}@{selected|jack_bonus}]] - [[@{selected|d20}+@{selected|dexterity_mod}@{selected|jack_bonus}]]   | Costituzione, Costituzione +@{selected|constitution_mod}@{selected|jack_bonus}=[[@{selected|d20}+@{selected|constitution_mod}@{selected|jack_bonus}]] - [[@{selected|d20}+@{selected|constitution_mod}@{selected|jack_bonus}]]   | Intelligenza, Intelligenza +@{selected|intelligence_mod}@{selected|jack_bonus}=[[@{selected|d20}+@{selected|intelligence_mod}@{selected|jack_bonus}]] - [[@{selected|d20}+@{selected|intelligence_mod}@{selected|jack_bonus}]]   | Saggezza, Saggezza +@{selected|wisdom_mod}@{selected|jack_bonus}=[[@{selected|d20}+@{selected|wisdom_mod}@{selected|jack_bonus}]] - [[@{selected|d20}+@{selected|wisdom_mod}@{selected|jack_bonus}]]   | Carisma, Carisma +@{selected|charisma_mod}@{selected|jack_bonus}=[[@{selected|d20}+@{selected|charisma_mod}@{selected|jack_bonus}]] - [[@{selected|d20}+@{selected|charisma_mod}@{selected|jack_bonus}]] }}} I'm Italian and of course the statistics are in Italian for correctness I leave the translation from Italian into English here: Forza - S trength Destrezza - D exterity Costituzione -  Constitution Intelligenza - I ntelligence Saggezza -  Wisdom Carisma -  Charisma Thanks to anyone who can give me a hand.
'jack_bonus' is only for Bards 'Jack of all Trades' feature.  Proficiency Bonus attribute is 'pb'. (So @{selected|pb}  is the attribute call.)   I would also suggest adding a 0 before any attribute call, in case an attribute field is empty .
1693378975

Edited 1693379414
 Thanks for your reply, following your advice the macro would become like this, right? I don't quite understand where to set the 0. /w gm @{selected|wtype}&{template:default} {{name=Ability Score for @{selected|character_name}}} {{?{Ability Score   | Forza, Forza +@{selected|strength_mod}@{selected|pb}=[[@{selected|d20}+@{selected|strength_mod}0@{selected|pb}]] - [[@{selected|d20}+0{selected|strength_mod}@{selected|pb}]]   | Destrezza, Destrezza +@{selected|dexterity_mod}@{selected|pb}=[[@{selected|d20}+@{selected|dexterity_mod}@{selected|pb}]] - [[@{selected|d20}+@{selected|dexterity_mod}@{selected|pb}]]   | Costituzione, Costituzione +@{selected|constitution_mod}@{selected|pb}=[[@{selected|d20}+@{selected|constitution_mod}@{selected|pb}]] - [[@{selected|d20}+@{selected|constitution_mod}@{selected|pb}]]   | Intelligenza, Intelligenza +@{selected|intelligence_mod}@{selected|pb}=[[@{selected|d20}+@{selected|intelligence_mod}@{selected|pb}]] - [[@{selected|d20}+@{selected|intelligence_mod}@{selected|pb}]   | Saggezza, Saggezza +@{selected|wisdom_mod}@{selected|pb}=[[@{selected|d20}+@{selected|wisdom_mod}@{selected|pb}]] - [[@{selected|d20}+@{selected|wisdom_mod}@{selected|pb}]] | Carisma, Carisma +@{selected|charisma_mod}@{selected|pb}=[[@{selected|d20}+@{selected|charisma_mod}@{selected|pb}]] - [[@{selected|d20}+@{selected|charisma_mod}@{selected|pb}]] }}} I did a test, in the photo you see the result, sorry for the quality. The pg have 6 bonus in Strength  Clearly something is wrong