• 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

Hand of Glory script error?

Lonewolf147

Well-known member
Thanks to some help in a recent thread discussing item slot changes, I had looked into the scripting for the Hand of Glory. (http://forums.wolflair.com/showthread.php?t=48452)

The Hand is supposed to give you one extra ring slot. When I had looked at it for the Pathfinder version, it worked correctly and gave me 3 slots. But I became confused when I saw the script in the d20 version.

Code:
      ~ If we're equipped, and the hero is wearing one or more rings, delete
      ~ one of the 'I have a ring equipped' tags.
      if (field[gIsEquip].value <> 0) then
        if (hero.tagis[Hero.EqpRing] <> 0) then
          var result as number
          result = hero.delete[Hero.EqpRing]
          endif
        endif

This seems overly complicated, plus, it doesn't actually give you an extra slot. It just deletes the EqpRing tag. Which then lets you equip as many rings as you want, regardless of how many slots.

Was this intentional, or should it be changed to add a slot?

Code:
      ~ If we're equipped, add a tag that allows an extra ring slot.
      doneif (field[gIsEquip].value = 0)

      perform hero.assign[ExtraSlot.EqpRing]
 
I have already fixed the script to use the ExtraSlot.? Tag for the upcoming release. I noticed that d20 was using outdated logic so now it looks pretty much like Pathfinder. :)
 
Back
Top