• 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

New Magic Item Slots

CaliVanus

Member
I need to setup item slots for magic tattoos so my players are restricted to one per slot and need to set up some new slots for tattoos and piercings (ear, navel, and tongue). Is it possible to do this with the editor?
 
Take a look at THIS thread from d20 as it covers the concept of making this work. The death difference is that Pathfinder uses a Custom.? tag not a User.? tag.
 
I finally got back to my computer after the holidays and started to work on this and I'm still missing something.

If I have this right I make an EvalScript at Pre-Levels/10000 with the following:
Code:
~ If not equipped get out now!
doneif (field[gIsEquip].value = 0)

~ Set the custom equipment slot tag onto the hero.
perform hero.pushtags[Custom.EqpTatRg]

then make a Pre-req with the following:
Code:
var tags as string

~ get which Custom Equipped tag is on our-self
tags = altpick.tagids[Custom.EqpTatRg]

~ Test to make sure we are only wearing one of these pieces of equipment
validif (hero.tagcountstr[tags] <= 1)

But it says my Custom tag is not defined (for obvious reasons), so how do I make a new tag that it will use?
 
Back
Top