• 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

Pearl of Power as a Ring vs Wondrous

Slimgauge

Member
My GM gave my character a custom item. It's a pearl of power, but as a ring. I used to editor to make a copy of the existing pearl of power (a wondrous item), changed the slot to ring, edited the description, and saved it with the unique Id "irROP1" and Name: Ring of power (1st level) in a file called Ring_of_Power.user

When I add this item to the character's profile, via the magic tab, "Click to add a new magic item", the ring shows up under "Magical Tattoo", not "Rings". When I go to re-edit my custom item, it's still under the Wondrous Items tab in the editor.

1) How do I get this custom ring to show up under Rings when adding it to a character ?
2) How do I get this item to show up under the Rings tab when attempting to re-edit it in the future ? (because I will forget that it's under the Wondrous Items tab).

It's probably not important, but in addition the bootstrap raLowLight was added, as this special ring also grants low-light vision. Could this be causing the trouble ?
 
Last edited:
Rings are made on a seperate tab than wondrous items, as they are a different type of thing.

First, make sure you don't have the file open in the HL editor. Instead, open the .user file you created with a text editor. I use Editpad Pro, but I am sure there are all kinds of free ones out there you can use. There should be an entry in there which looks like this:

Code:
  <thing id="irROP1" name="Ring of Power" description="Your Description" compset="Wondrous">
    <tag group="Helper" tag="EquipMag"/>
    <tag group="Helper" tag="ShowSpec"/>
    <tag group="Helper" tag="EquipAvail"/>
    <tag group="gType" tag="Ring"/>
    <eval phase="First" priority="10000"><![CDATA[
      ~Some code
      ]]></eval>
    </thing>

Change compset="Wondrous" to compset="Ring".
 
Thank you for the advice.

I used TextPad.

After I made the change, I get these errors:

Thing 'irROP1' - Contains duplicates of tag 'EquipAvail' in group 'Helper'
Thing 'irROP1' - Contains duplicates of tag 'EquipMag' in group 'Helper'
Thing 'irROP1' - Contains duplicates of tag 'EqpRing' in group 'Helper'

EDIT: I deleted these three tags from the "Tags" button in the upper right.
The item saves and tests successfully now. I will try to add this item to the character to test further.
 
Last edited:
Rings are made on a seperate tab than wondrous items, as they are a different type of thing.

First, make sure you don't have the file open in the HL editor. Instead, open the .user file you created with a text editor. I use Editpad Pro, but I am sure there are all kinds of free ones out there you can use. There should be an entry in there which looks like this:

Code:
  <thing id="irROP1" name="Ring of Power" description="Your Description" compset="Wondrous">
    <tag group="Helper" tag="EquipMag"/>
    <tag group="Helper" tag="ShowSpec"/>
    <tag group="Helper" tag="EquipAvail"/>
    <tag group="gType" tag="Ring"/>
    <eval phase="First" priority="10000"><![CDATA[
      ~Some code
      ]]></eval>
    </thing>

Change compset="Wondrous" to compset="Ring".

This also helps me too. I was doing it another way. Thanks Aaron.
 
Thing 'irROP1' - Contains duplicates of tag 'EquipAvail' in group 'Helper'
Thing 'irROP1' - Contains duplicates of tag 'EquipMag' in group 'Helper'
Thing 'irROP1' - Contains duplicates of tag 'EqpRing' in group 'Helper'

EDIT: I deleted these three tags from the "Tags" button in the upper right.
The item saves and tests successfully now.

I am curious as to the "meaning" of these errors. I just designed a Rod (also a minor artifact); after appending a couple things to it (description, 1 spell, the descinfo from another rod), it threw me the "Contains duplicates of tag 'EquipAvail' in group 'Helper'" error.

That Helper tag is added by default to all new rods; what made it duplicated/superfluous?
 
I am curious as to the "meaning" of these errors. I just designed a Rod (also a minor artifact); after appending a couple things to it (description, 1 spell, the descinfo from another rod), it threw me the "Contains duplicates of tag 'EquipAvail' in group 'Helper'" error.

That Helper tag is added by default to all new rods; what made it duplicated/superfluous?
Does your item already have those tags listed in the Editor on the "Tags" button? If so remove them so that HL can add them itself.
 
Does your item already have those tags listed in the Editor on the "Tags" button? If so remove them so that HL can add them itself.

That I know and did. Just wondering how a tag that is added by default to a newly created item could quickly end up being duplicated without me adding anything to the item that could cause that (AFAIK).
 
That I know and did. Just wondering how a tag that is added by default to a newly created item could quickly end up being duplicated without me adding anything to the item that could cause that (AFAIK).

All magic items in Pathfinder use the same tags to determine their behavior. For example, whether they show an equip checkbox or not is determined by whether they have the Helper.EquipMag tag. For wondrous items, there are some items that need that checkbox, like the pearl of power, and some items, like a bag of holding, that don't need to be equipped on the character to be used. So, whether an item gets Helper.EquipMag is up to the author - it's a checkbox in the editor.

Rings on the other hand, always show that checkbox, so Helper.EquipMag is permanently assigned to all rings, and unlike the Wondrous Item tab, the Ring tab doesn't show the user a checkbox for that setting. So, when you moved your item between tabs, Helper.EquipMag and several other tags that had been assigned with checkboxes on the Wondrous Item tab are now settings that are permanently turned on for rings, and Hero Lab is telling you about those duplications.
 
Back
Top