PDA

View Full Version : Effects coding for cover



GerryWright
July 19th, 2021, 15:56
I hate to be a dumb bunny, but I have been studying the FGU wiki on effects and the forums and still cannot perfect the coding for this effect. I want to code for both the increase in armor class and the increase in the DEX save that 3/4 cover gives. When I use the code

COVER 3/4; AC: 5; SAVE: 5

I get the desired effect, except that all ability score checks are increased. So in addition to the protected character getting a boost to save against Fireball (which uses DEX save), they also get a +5 to the save against Charm (which uses WIS save). When I try to put in the [DEX] modifier to restrict the boost to DEX save, it cancels the boost to the saves. I have tried to put it [DEX] in a number of places, but nothing seems to work.

LordEntrails
July 19th, 2021, 16:06
[dexterity]
I believe is the correct syntax, not the abbreviation. Wiki will have the details.

Myself, I just use the buttons under the chat window as needed. Easier than trying to turn effects on and off.

Moon Wizard
July 19th, 2021, 17:30
The wiki for 5E Effects is located here:
https://fantasygroundsunity.atlassian.net/wiki/spaces/FGCP/pages/996642031/5E+Effects+for+Advanced+Automation

Coding a +5 to dexterity saves would look like this:
"SAVE: 5 dexterity"

The [DEX] tag is only for effects initially applied from PC sheets to read the PC dexterity bonus when the effect is added to the combat tracker. (Noted in the "A Word on Syntax" section.)

Regards,
JPG

GerryWright
July 19th, 2021, 18:00
Coding a +5 to dexterity saves would look like this:
"SAVE: 5 dexterity"JPG

Thank you. That worked. I have to tell you, I have been reading the wiki pages on effects and searching the forums for hints over and over again. I am still confused by a lot of it and end up having to do repeated trial and error runs to figure out codes even for very simple effects.

Zacchaeus
July 19th, 2021, 18:40
Thank you. That worked. I have to tell you, I have been reading the wiki pages on effects and searching the forums for hints over and over again. I am still confused by a lot of it and end up having to do repeated trial and error runs to figure out codes even for very simple effects.

Try these videos https://www.fantasygrounds.com/forums/showthread.php?41478-Effects-Videos-for-5E

GerryWright
July 20th, 2021, 13:22
Try these videos https://www.fantasygrounds.com/forums/showthread.php?41478-Effects-Videos-for-5E

Thank you. I have watched some of the videos and they have been a great help.