BloodAngel099
Well-known member
I am trying to have a custom magic item with a +2 Profane bonus to Int and having the set max skill ranks for a skill to Knowledge: Planes and want it to add a custom language. I can't figure out what tags to use though. here is what I have so far (copied from Headband of Vast Intelligence).
Phase: Pre-Attributes Priority: 10000
~ Items which would add enhancement bonuses to attributes do not do so
~ when we are using the Auto Bonus Progression rules from Pathfinder Unchained.
doneif (hero.tagis[source.PUAutoB?] <> 0)
doneif (field[gIsEquip].value = 0)
#enhancementbonus[hero.child[aINT], 2]
~ add to our languages known
herofield[tLangsSpk].value += 1
Phase: Post-Levels Priority: 4000
~ Items which would add enhancement bonuses to attributes do not do so
~ when we are using the Auto Bonus Progression rules from Pathfinder Unchained.
doneif (hero.tagis[source.PUAutoB?] <> 0)
doneif (field[gIsEquip].value = 0)
~ now, we'll add item ranks to that skill equal to our HD
if (field[skKnowPlan].ischosen <> 0) then
field[skKnowPlan].chosen.field[skItem].value += herofield[tHitDice].value
endif
Last edited: