Lone Wolf Development Forums

Lone Wolf Development Forums (http://forums.wolflair.com/index.php)
-   HL - d20 System (http://forums.wolflair.com/forumdisplay.php?f=46)
-   -   Hand of Glory script error? (http://forums.wolflair.com/showthread.php?t=50737)

Lonewolf147 September 16th, 2014 04:25 PM

Hand of Glory script error?
 
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]


ShadowChemosh September 16th, 2014 06:49 PM

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. :)

Lonewolf147 September 17th, 2014 03:19 PM

Excellent :)


All times are GMT -8. The time now is 12:35 AM.

Powered by vBulletin® - Copyright ©2000 - 2024, vBulletin Solutions, Inc.
wolflair.com copyright ©1998-2016 Lone Wolf Development, Inc. View our Privacy Policy here.