• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Gauntlets of War (Complete Champion) help?

Dark_Soul

Well-known member
I have a character that just got a pair of these, and I'd like to get what's entered already, scripted correctly.

They grant a +1 enhancement bonus to melee damage when equipped. This appears to already be scripted. However, if you worship a deity with the War domain, this bonus increases to +3, but only with the deity's favored weapon.

Honestly not sure where to start on this one. Any help is appreciated.
 
Last edited:
I have a character that just got a pair of these, and I'd like to get what's entered already, scripted correctly.

They grant a +1 enhancement bonus to melee damage when equipped. This appears to already be scripted. However, if you worship a deity with the War domain, this bonus increases to +3, but only with the deity's favored weapon.

Honestly not sure where to start on this one. Any help is appreciated.

Because deities were only recently (relatively speaking) entered, things like this haven't been addressed. However, it should be pretty easy. I just made a new portfolio and selected a deity at random. Looking at the hero tags, I see several "AllowDom.?" tags. It should be possible to use this tag to apply the bonus with something like:

Code:
if (hero.tagis[AllowDom.cdWar] <> 0) then
  bonus = 3)
endif

The tricky part here will be figuring out the deity's favored weapon(s).

In the meantime, the suggestion provided by Provos above will suit your needs.
 
Last edited:
Back
Top