View Single Post
Lonewolf147
Senior Member
 
Join Date: Feb 2013
Posts: 137

Old September 16th, 2014, 04:25 PM
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]
Lonewolf147 is offline   #1 Reply With Quote