DICE PACKS BUNDLE
Page 6 of 6 First ... 4 5 6
  1. #51
    Congratulations again on the extension. This latest update is impressive.

    I'm still testing and trying to adapt my modules to use your new tags.

    Here's a small note:
    Regarding cantrips for NPCs (2014 version), there is no automatic upcasting.

    Example with the mage (2014):
    Spellcasting. The mage is a 9th-level spellcaster. Its spellcasting ability is Intelligence (spell save DC 14, +6 to hit with spell attacks). The mage has the following wizard spells prepared:
    Cantrips (at will): fire bolt, light, mage hand, prestidigitation

    ==> The mage is a 9th-level spellcaster --> Fire Bolt should roll 2d10

    Do you think it would be possible to search for spell level cast for NPCs and use that value if it is defined for HCULVL or the upcast of cantrips?

  2. #52
    Quote Originally Posted by MrDDT View Post
    Wow this is super awesome! Nice work.

    Can you make it so that the targets when they are AOE permanent, can't be targeted? I can see when people using AOEs they might target stuff by mistake.

    They can be targeted by AOEs and other AURAs. Maybe put an option in for it?

    AOE Effect ext also has built in that if you have the creature type "Object" it will not be targeted by AOE Effects. Also using type Object, will not trigger on self (when it's the bearer of that). So if you are placing an AOE Effect on an "Object" NPC place holder. You can use the basic coding of...
    That is actually a fantastic idea! Handling the "Object" creature type to prevent self-targeting and accidental AoE clutter makes perfect sense, especially for placeholder tokens. I will absolutely look into integrating this logic or adding an option for it in a future build. Thank you for the detailed suggestion!


    Quote Originally Posted by Lo Zeno View Post
    Massive update indeed! I'm still going through the video but it already looks like a lot of great stuff
    Thank you so much! I'm really proud of this update and glad to hear you are liking the new features and the showcase video. I appreciate the support!


    Quote Originally Posted by SmackDaddy View Post
    UPDATE: Disregard - I ended up not realizing the name changed and it was unloaded in my extensions (normally if the name stays the same, it doesn't unload it) I loaded it, and it's working now. Thank you! (maybe this will help someone else which is why I left my post intact)
    Glad you got it sorted out! Just out of curiosity, did the name actually look different to you in the FGU launcher? It shouldn't have changed between the old version and the new one, but I'm happy to hear it was just a quick loading issue and that everything is working perfectly for you and your players now. Thank you for leaving the post up to help others!


    Quote Originally Posted by Vaall View Post
    Congratulations again on the extension. This latest update is impressive.

    I'm still testing and trying to adapt my modules to use your new tags.

    Here's a small note:
    Regarding cantrips for NPCs (2014 version), there is no automatic upcasting.
    ==> The mage is a 9th-level spellcaster --> Fire Bolt should roll 2d10

    Do you think it would be possible to search for spell level cast for NPCs and use that value if it is defined for HCULVL or the upcast of cantrips?
    Thank you for the compliments, Vaall!

    And thank you for the excellent report. Since the NPC support feature is brand new, there are bound to be a few edge cases like this that pop up. The parser isn't currently checking the NPC's descriptive text line to grab their overall spellcaster level for cantrip scaling. I will definitely look into the code to see how I can account for this and pull that caster level properly for NPC cantrips. Thanks for catching it!

  3. #53
    Quote Originally Posted by Henix View Post
    Glad you got it sorted out! Just out of curiosity, did the name actually look different to you in the FGU launcher? It shouldn't have changed between the old version and the new one, but I'm happy to hear it was just a quick loading issue and that everything is working perfectly for you and your players now. Thank you for leaving the post up to help others!
    Name is too large in the extension screen so I am not sure. The only other extensions that do this are the WOB (World of Bethica) extensions....each new version shows at the bottom of my screen (because "W" is the last letter in the extension list) -- I just didn't think yours would have changed, but I am glad it wasn't a conflict, because my entire party have been shown what this can do (5 of 6 party members are spellcasters), and are super excited for Sunday's game day!

  4. #54
    GKEnialb's Avatar
    Join Date
    Jul 2017
    Location
    Castle Rock, CO
    Posts
    621
    Used this for today's session and it worked beautifully - great job! Preparing for a different group for tomorrow, I found an issue with Searing Smite. It has damage that does increase with upcasting and damage that doesn't increase with upcasting, but there's nothing in the config, so I can't do any mods to make it work correctly. And even though it says it's going to increase damage with upcasting, it doesn't.

    Searing Smite.jpg

    Looks like that's true of all paladin spells.
    Last edited by GKEnialb; June 14th, 2026 at 01:13.

  5. #55
    Quote Originally Posted by SmackDaddy View Post
    Name is too large in the extension screen so I am not sure. The only other extensions that do this are the WOB (World of Bethica) extensions....each new version shows at the bottom of my screen (because "W" is the last letter in the extension list) -- I just didn't think yours would have changed, but I am glad it wasn't a conflict, because my entire party have been shown what this can do (5 of 6 party members are spellcasters), and are super excited for Sunday's game day!
    That's awesome to hear! I really hope your group has a blast with it. With 5 out of 6 players running spellcasters, your table is the ultimate proving ground for this kind of automation! Please let me know how Sunday's game day goes, how your players enjoy the extension, and if there are any specific areas where you feel it can be improved.


    Quote Originally Posted by GKEnialb View Post
    Used this for today's session and it worked beautifully - great job! Preparing for a different group for tomorrow, I found an issue with Searing Smite. It has damage that does increase with upcasting and damage that doesn't increase with upcasting, but there's nothing in the config, so I can't do any mods to make it work correctly. And even though it says it's going to increase damage with upcasting, it doesn't.

    Looks like that's true of all paladin spells.
    Thank you so much! I'm thrilled to hear it worked beautifully for your session today.

    Regarding Searing Smite and certain other Paladin spells, you've hit on an edge case that the default automatic parser can't perfectly automate on its own.

    However, you can manually adapt these spells right now using the new custom effect features introduced in the latest update! You can code the upcast damage modifier directly into the effect line like this:
    Code:
    DMG: 1[+1/HSULVL]d6 fire
    Here is how that works under the hood with the new system:
    • When cast at its base level (1st level), HSULVL (Henix Spell Upcast Level) evaluates to 0 because it is cast at its base slot, so it adds 0 to the 1 before the tag and remains 1d6 fire.
    • If you upcast the spell to a higher slot, HSULVL will equal the number of levels it was upcast by (1, 2, etc.), which dynamically updates the dice count—adding 1 die for every upcast level, resulting in 2d6, 3d6, and so on.


    I hope this helps clear up your doubts and gets it working perfectly for your group tomorrow! Let me know if you run into any issues.
    Last edited by Henix; June 14th, 2026 at 20:52.

  6. #56
    Hey, first of all, great job!

    I had a lot of fun testing your extension all weekend from every possible angle.
    I can confidently say that ASD has become completely unnecessary given the quality of what you've built here.
    Here are a few notes and suggestions:

    Effect duration on caster (persistent AoE)

    Would it be possible to automatically add a duration to the effect applied to the caster of a persistent AoE spell ("Spell Name (x° Level)")?
    Ideally, this duration could be pulled from the "Duration" field in the spell description.
    Another point: even when I manually set a duration (e.g. 1200 for 2 hours), a short rest removes the effect entirely.
    I observe the same behavior when advancing time (https://forge.fantasygrounds.com/shop/items/2931/view).

    Concentration tag (C)

    I noticed that the "(C)" tag is automatically added to this effect, even when the spell does not require concentration.
    This isn’t a major issue (and maybe no non-concentration persistent AoE spells even exist), but it might be better to only add it when the spell actually requires concentration.

    Template effect on summoned NPCs

    Regarding the template effect: applying it directly to the summoned NPC is a great idea, and it works very well
    However, this effect does not go through the standard FGU pipeline, so other common tags are not interpreted.
    That’s not really a problem since your system already covers most use cases — I’m just stress-testing edge cases 

    Aura visualization on temporary NPCs

    This might not be possible due to the temporary nature of the summoned NPCs, but aura visualization doesn’t seem to work.
    Whether using default or custom colors, even with an effect like:
    Code:
    AURA: 20 !self, all, green; X
    the aura keeps the original actor color instead of the defined one.

    New AoE type (rectangle)

    All existing AoE types (cone, cube, line, sphere, emanation) are working perfectly
    Do you think it would be possible to add a rectangle type?
    The idea would be something similar to line, but with the origin point centered instead of placed at one end.
    This would allow behavior closer to the 3DRect shapes from AoE Effects (and thus have an exact visualization of the walls of fire, for example)

    AoE Automator window trigger

    Small detail (maybe already documented and I missed it):
    For the AoE Automator window to appear, the "School" field must be filled in.
    Otherwise, nothing happens when clicking Use Power.
    Once defined, it works perfectly for all spells and even powers with limited uses.
    The automatic popup on click feels really great

  7. #57
    Quote Originally Posted by Vaall View Post

    Aura visualization on temporary NPCs

    This might not be possible due to the temporary nature of the summoned NPCs, but aura visualization doesn’t seem to work.
    Whether using default or custom colors, even with an effect like:
    Code:
    AURA: 20 !self, all, green; X
    the aura keeps the original actor color instead of the defined one.
    Aura visualization will be baked into the AoE Effects extension on the next version 1.1 released on this coming Tuesday.

    https://www.youtube.com/watch?v=eViy...sdWQKcl4AaABAg

  8. #58
    GKEnialb's Avatar
    Join Date
    Jul 2017
    Location
    Castle Rock, CO
    Posts
    621
    Quote Originally Posted by Henix View Post

    I hope this helps clear up your doubts and gets it working perfectly for your group tomorrow! Let me know if you run into any issues.
    Works great - thanks. It was a big hit today.

  9. #59
    Quote Originally Posted by bwatford View Post
    Aura visualization will be baked into the AoE Effects extension on the next version 1.1 released on this coming Tuesday.

    https://www.youtube.com/watch?v=eViy...sdWQKcl4AaABAg
    Yes, I was a bit hasty in my description; I meant "Auras Visualized."
    https://forge.fantasygrounds.com/shop/items/620/view

    I'll update this point when you release version 1.1 of AoE Effect

  10. #60
    Lo Zeno's Avatar
    Join Date
    Mar 2020
    Location
    United Kingdom
    Posts
    589
    Speaking of AoE Effects and auras visualizations... I don't know how feasible it is, and it's not something of a "must have", but it would be kind of a killer feature if you could do it: if 5E AoE Spells Auto Targeting could be compatible with AoE Effect in a way that would allow to add the aura visualization effects to the spell targeting template for permanent spells, that would be HUGE. AoE Effects includes visualizations for more than just auras (see Web, Grease, Silence...) and allows to define custom visualizations (including animations) so allowing this extension to apply those same visualizations (assuming AoE Effects is active at the same time) would make the targeting templates much more immersing during play.

Page 6 of 6 First ... 4 5 6

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Starfinder Playlist

Log in

Log in