DICE PACKS BUNDLE
Page 86 of 116 First ... 36 76 84 85 86 87 88 96 ... Last
  1. #851
    Minty23185Fresh's Avatar
    Join Date
    Dec 2015
    Location
    Goldstone, CA, USA
    Posts
    1,196
    Blog Entries
    29
    Hi celestian, great extension, much thanks. It's invaluable, when used to prep an upcoming session.

    I've noticed two things:
    1) The first might be out of the scope of your extension.
    The INIT: Effect when placed in the Effect Features (at the bottom of an NPC's stat page), does not work on the first initiative roll, when the NPC is just dropped into the Combat Tracker. On any subsequent rolls of initiative everything is great. (see screenshot)
    Noticed it in another campaign, so created a virgin campaign, no other extensions, no modules, no community content.
    Untitled_2.jpg

    2) Just in case the above happened to have thrown an error, I looked at the console, and found a warning (see second screen shot)
    It occurs during load though so I doubt it has anything to do with issue #1.
    Personally, even warnings make me cringe when thrown by my own extensions. They never seem to be a good thing. So I thought I'd give you a heads up.
    Untitled_3.png
    Current Projects:
    Always...
    Community Contributions:
    Extensions: Bardic Inspiration, Druid Wild Shapes, Local Dice Tower, Library Field Filters
    Tutorial Blog Series: "A Neophyte Tackles (coding) the FG Extension".

  2. #852
    Quote Originally Posted by celestian View Post
    Community member submitted a fix/pull for this which I've pushed to Test channel. Thank you kind soul.

    I won't be able to test myself today but if you guys can confirm it works I'll push to live.
    I went ahead and pushed to live, im still not home yet but wanted to get this out. Please report any issues.
    ---
    Fantasy Grounds AD&D Reference Bundle, AD&D Adventure Bundle 1, AD&D Adventure Bundle 2
    Documentation for AD&D 2E ruleset FGU Reference Module, or Web.
    Custom Maps (I2, S4, T1-4, Barrowmaze,Lost City of Barakus)
    Note: Please do not message me directly on this site, post in the forums or ping me in FG's discord.

  3. #853
    Quote Originally Posted by Minty23185Fresh View Post
    Hi celestian, great extension, much thanks. It's invaluable, when used to prep an upcoming session.

    I've noticed two things:
    1) The first might be out of the scope of your extension.
    The INIT: Effect when placed in the Effect Features (at the bottom of an NPC's stat page), does not work on the first initiative roll, when the NPC is just dropped into the Combat Tracker. On any subsequent rolls of initiative everything is great. (see screenshot)
    Noticed it in another campaign, so created a virgin campaign, no other extensions, no modules, no community content.
    Untitled_2.jpg

    2) Just in case the above happened to have thrown an error, I looked at the console, and found a warning (see second screen shot)
    It occurs during load though so I doubt it has anything to do with issue #1.
    Personally, even warnings make me cringe when thrown by my own extensions. They never seem to be a good thing. So I thought I'd give you a heads up.
    Untitled_3.png
    Regarding #2, the warning indicates an XML merge that exists solely for extension compatibility purposes and so when the other extension isn't present the merge can't resolve. Personally, I've never found a way to reconcile this type of scenario without the warning. I'd be interested if you have any ideas though cause that sort of thing exists for a handful of extensions beyond this one.
    My Forge creations: https://forge.fantasygrounds.com/crafter/9/view-profile
    My GitHub: https://github.com/MeAndUnique
    Buy me a coffee: https://ko-fi.com/meandunique
    Discord: MeAndUnique#6805

  4. #854
    Minty23185Fresh's Avatar
    Join Date
    Dec 2015
    Location
    Goldstone, CA, USA
    Posts
    1,196
    Blog Entries
    29
    Quote Originally Posted by MeAndUnique View Post
    Regarding #2, the warning indicates an XML merge that exists solely for extension compatibility purposes and so when the other extension isn't present the merge can't resolve. Personally, I've never found a way to reconcile this type of scenario without the warning. I'd be interested if you have any ideas though cause that sort of thing exists for a handful of extensions beyond this one.
    Ich! If I comprehend fully, what you’ve said:
    The only way I can think of is to do it programmatically (in lua) during runtime.
    Check for the existence of the windowclass in an onInit(), probably, if it exists, build whatever you’re merging in, some sort of control I suspect, and add it in that way.

  5. #855
    Quote Originally Posted by Minty23185Fresh View Post
    Ich! If I comprehend fully, what you’ve said:
    The only way I can think of is to do it programmatically (in lua) during runtime.
    Check for the existence of the windowclass in an onInit(), probably, if it exists, build whatever you’re merging in, some sort of control I suspect, and add it in that way.
    Yeah, I've been in similar headspace, the primary challenge is that by the time extensions are loaded and Lua scripts are run it isn't possible to interact directly with windowclass definitions, only with the resulting windowinstances. So the onInit in question would need to be for the windowinstance as it is opened, and the only way to get the script there would be to merge with it, and so vicious cycle. In theory one could possible tie in to the Interface.onWindowOpened event, though that would be at least an order of magnitude more complex and thus error prone than normal merging, which is ultimately counter to the goal of keeping things clean. If only we could have conditional XML based on extensions, like we can for rulesets, though even that comes with a whole slew of load order considerations.
    My Forge creations: https://forge.fantasygrounds.com/crafter/9/view-profile
    My GitHub: https://github.com/MeAndUnique
    Buy me a coffee: https://ko-fi.com/meandunique
    Discord: MeAndUnique#6805

  6. #856
    Minty23185Fresh's Avatar
    Join Date
    Dec 2015
    Location
    Goldstone, CA, USA
    Posts
    1,196
    Blog Entries
    29
    @celestian sorry about hijacking your thread.

    @MeAndUnique another possibility is a third extension, common to both, housing only the common windowclass. If either extension is used the third, common extension, is also used. The windowclass is guaranteed to be there that way. I started a proof of concept years ago with one of my extensions. Had a base functionality and years later added a large extended functionality. I developed all three extensions in one “house” to get it all working. Then just never got around to breaking them out into separate unique extensions. Still resides that way today. Hella easier to support. Either the base functionality gets broken by an FG update or the advanced functionality gets broken. Rarely both.

  7. #857
    Doubt: Can I use this extension with the Ammo Manager and apply the +1 Effect on the arrow or bolt for example?
    Example: I have a Shortbow equipped and 2 quivers, one of which has 20 common arrows and the other 20 arrows +1.
    Using the Ammo Manager resource I equip my Shortbow with the +1 arrows and then with the Advanced Effects extension I determine that [ATK: 1][ActionOnly] and also [DMG:1][ActionOnly].
    When I have the +1 arrow, will my attacks and damage have a +1 bonus?
    The Ruleset used is Dungeons and Dragons (5E).
    KICK| TWITCH | YOUTUBE
    BRAZILIAN
    GMT-3
    FANTASY GROUNDS UNITY - ULTIMATE VERSION
    PLAYER ONLY
    FORGE CREATOR



  8. #858
    Quote Originally Posted by YAKO SOMEDAKY View Post
    Doubt: Can I use this extension with the Ammo Manager and apply the +1 Effect on the arrow or bolt for example?
    Example: I have a Shortbow equipped and 2 quivers, one of which has 20 common arrows and the other 20 arrows +1.
    Using the Ammo Manager resource I equip my Shortbow with the +1 arrows and then with the Advanced Effects extension I determine that [ATK: 1][ActionOnly] and also [DMG:1][ActionOnly].
    When I have the +1 arrow, will my attacks and damage have a +1 bonus?
    The Ruleset used is Dungeons and Dragons (5E).
    If you mark the effect pinned to the arrow as Action Only and equip the arrow, only attacks made with the weapon that has that arrow loaded will benefit from the arrow's attached effect.
    At least, that is how it is supposed to work. I contributed back that integration some time ago when I added it to my PFRPG port of Advanced Effects and it may have stopped working here at some point.
    So if it doesn't work, let me know!
    Last edited by bmos; March 14th, 2023 at 13:15.

  9. #859
    Do anybody knows how to fix the extension not working?
    I added trough forge the extensions "5E Advanced Effects", updated fantasy grounds, enabled it in the "load campaign" section, in the chat shows that the extensions is added and enabled it in the rules, but when i open a sheet i can't find any of the option of the extension. Tried to disable & hide it, update, re-enable and re-update, but it didn't fix anything.
    There is something i'm missing?

    (A guy on discord helped me, i was searching under the wrong tab ç_ç)
    Last edited by Retroh; March 14th, 2023 at 21:02.

  10. #860
    MrDDT's Avatar
    Join Date
    Nov 2018
    Location
    Disney World, FL
    Posts
    2,037
    Quote Originally Posted by Retroh View Post
    Do anybody knows how to fix the extension not working?
    I added trough forge the extensions "5E Advanced Effects", updated fantasy grounds, enabled it in the "load campaign" section, in the chat shows that the extensions is added and enabled it in the rules, but when i open a sheet i can't find any of the option of the extension. Tried to disable & hide it, update, re-enable and re-update, but it didn't fix anything.
    There is something i'm missing?
    What is not working? There are no options in the FGU options for this EXT, but it should be working
    -MrDDT
    Discord @mrddt
    Grim Press Discord (Publishing/Extensions/Modules)
    Bethica Discord (West Marches RPG)

    PLEASE VOTE FOR THESE FEATURES VERY IMPORTANT!!!

Page 86 of 116 First ... 36 76 84 85 86 87 88 96 ... Last

Thread Information

Users Browsing this Thread

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

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