Screetch79
Member
Hi.
First of all I apologize for my poor english, but is not my native language.
Sorry.
Then:
i'm trying to code the Templar from "The Genius Guide" and i've found a problem:
one of her custom ability is the Scourge of The Unfaithful, kind of Favored Enemy.
It adds a MORALE bonus to attack, damage and some skill.
i've worked the code for the Custom and the Class Special:
the problems are:
1. The Attack value don't change, but the skills change.
2. The Damage pick have the General Modifier?
One of the Optional Feats (Master of Order) let you choose one of your Orders (Class custom, reflecting the Clerical Domain) and give you the 1st level special power of the C. Domain of the same name.
How can I represent this?
and how i can represent the fact that templar level and clerical level are the same for multiclass purpose?
Thanks to all for any kind of answer.
Grazie.
First of all I apologize for my poor english, but is not my native language.
Sorry.
Then:
i'm trying to code the Templar from "The Genius Guide" and i've found a problem:
one of her custom ability is the Scourge of The Unfaithful, kind of Favored Enemy.
It adds a MORALE bonus to attack, damage and some skill.
i've worked the code for the Custom and the Class Special:
Code:
<eval phase="UserPostLv" priority="10000"><![CDATA[~only run the rest for the first copy
doneif (tagis[Helper.FirstCopy] = 0)
~ If we're not shown, just get out now
doneif (tagis[Helper.ShowSpec] = 0)
~ Generate our new name
field[abValue].value = field[xCount].value*2
field[livename].text = field[thingname].text & " (+" & field[abValue].value & ")"
if (field[abilActive].value <> 0) then
#applybonus[BonMorale, hero.child[Attack], field[abValue].value]
hero.child[Damage].field[tDamBonus].value += field[abValue].value
#applybonus[BonMorale, hero.child[skBluff], field[abValue].value]
#applybonus[BonMorale, hero.child[skIntim], field[abValue].value]
#applybonus[BonMorale, hero.child[skPercep], field[abValue].value]
#applybonus[BonMorale, hero.child[skSenseMot], field[abValue].value]
endif]]></eval>
the problems are:
1. The Attack value don't change, but the skills change.
2. The Damage pick have the General Modifier?
One of the Optional Feats (Master of Order) let you choose one of your Orders (Class custom, reflecting the Clerical Domain) and give you the 1st level special power of the C. Domain of the same name.
How can I represent this?
and how i can represent the fact that templar level and clerical level are the same for multiclass purpose?
Thanks to all for any kind of answer.
Grazie.