PDA

View Full Version : Aura extension: I highly recommend it!



Farnaby
August 21st, 2021, 08:54
I just want to show how awesome this can be.

The extension with instructions is here (https://forge.fantasygrounds.com/shop/items/32/view).

Basically what it does is give someone an effect if they are in range of the player that has the aura.
And as soon as they move out of range, it removes the effect.
You can also differentiate between foe, friend, etc.

So I've been experimenting and here is an example using Trog Stench (I cannot for the life of me remember Xulgath)

I amended the following to the Trog automation: "sickened 1"|Effect: Trog Stench; Sickened: 1; DC: 16[FAILURE][CRITFAILURE]

Here is the Aura effect I added to the Trog:
TrogStench; AURA: 30 foe; Stench; IF: FACTION(!friend); IF: CUSTOM(Trog Stench); SAVE: -2 fortitude
(please note that the Trog is a foe(red) on the combat tracker, but all friendlies are foes to him.)

If someone who is not a friend [(Faction(!friend)] comes within 30 ft. they get following effect:
FROMAURA;Stench; IF: FACTION(!friend); IF: CUSTOM(Trog Stench); SAVE: -2 fortitude


So, if the PC failed their fortitude and got sickened, they get the effect Trog Stench and if they stay within 30 feet, they get -2 on their fortitude saves to recover from being sickened.

ronlugge
August 21st, 2021, 18:56
Okay, that is awesome. How do you handle the immunity from saving vs Xulgath's stench though?

Farnaby
August 21st, 2021, 19:07
I use the on/off button on the effect.

bmos
August 21st, 2021, 20:14
I just want to show how awesome this can be.

The extension with instructions is here (https://forge.fantasygrounds.com/shop/items/32/view).Thanks for that glowing review, kentmccullough did an excellent job building it and SoxMax and I have done our best to live up to that standard with our improvements.


I use the on/off button on the effect.
To clarify for anyone who is having trouble with aura immunity:
When someone enters an aura, a resulting FROMAURA effect is created on their combat tracker entry. If this FROMAURA effect is set to "off", then the effect will not be removed based on token movement. Because of this, leaving/entering the aura will keep the effect from impacting dice rolls/etc for this character.

Weissrolf
August 21st, 2021, 21:40
Yes, very nice extension. I hope that it gets extended (pun intended) to allow variation FROMAURA effects that either do not get removed upon leaving an aura (Inspire Courage) or do not get re-applied upon re-entering an aura (Invisibility Sphere). ;)

bmos
August 21st, 2021, 21:50
Yes, very nice extension. I hope that it gets extended (pun intended) to allow variation FROMAURA effects that either do not get removed upon leaving an aura (Inspire Courage) or do not get re-applied upon re-entering an aura (Invisibility Sphere). ;)That is on the issues tracker (https://github.com/bmos/FG-Aura-Effect/issues/16) for possible future implementation.

Weissrolf
August 21st, 2021, 22:06
Great stuff! ;)

Bolorokenpay
August 22nd, 2021, 16:37
I agree, this is awesome for bards.

JesterOC
August 27th, 2021, 05:16
Thank you I was having a rough time with those blue chain dudes with aura effects just a few sessions ago. This will really help the next time I run into auras

scottbrown
July 14th, 2024, 21:13
Fantastic extension! I've used it multiple times, and it's been a game changer for our Swashbuckler with the Marshal archetype (Dread Marshal Stance).

One potential bug -- I was trying to use this extension as part of the Ice Mummy's "Great Despair" power. (Basically, any living creature is Frightened 1 within 30 feet of the mummy.) I was utilizing the PermEffect action code in the NPC Ability Automation functionality. It appears that the PermEffect is removed from the mummy after its turn. I suspect this is because of FGU code parsing the "Frightened: 1" part of the statement and reducing it to Frightened 0, thereby removing the effect altogether. Any thoughts of how I can get around this?

Here's the code string I used on the Icy Mummy:

PermEffect: AURA: 30 !foe; Great Despair; Frightened: 1

Farnaby
July 15th, 2024, 13:51
I have no idea how to get round the automatic Frightened reduction.
The only thing would be somehow to reapply the AURA effect every round.

Try asking in this thread as well: https://www.fantasygrounds.com/forums/showthread.php?69965-5E-Aura-Effects-Coding/page19

Trenloe
July 15th, 2024, 15:11
If you put a duration on the Frightened condition then it won't change at the end of the round, it'll expire when the duration ends. I don't know if the aura effects extension supports duration.

Farnaby
July 18th, 2024, 06:46
Okay, now that is very useful.
Thanks for the info.