TobyFox2002
Well-known member
Alright I have two questions. I have a player in a game I'm running that is playing a Pathfinder based character in the 3.5 system. I have a placeholder so I can use the tactical panel, to make it easier I created an adjustment to add pathfinder statistics however I've run into a little snag. I'm not sure the CMB/CMD conversion I have is quite correct.
and CMD
Second, question I have a strange feat I've encountered that has two separate sets of prerequisites.
Combat Style Master* - Improved Unarmed Strike, two more style feats,
base attack bonus +6 or monk level 5th - May switch styles as a free action
So from what I am understanding from the feat prereqs you need to have
Imp Unarmed Strike, two more style feats +6 base attack OR be a 5th level monk.
Code:
var STR as number
var SIZE as number
var BAB as number
var CMB as number
STR = hero.child[aSTR].field[aModBonus].value
SIZE = herofield[tSize].value
BAB = hero.child[Attack].field[tAtkBase].value
CMB = STR + BAB + SIZE
~ BAB + Strength + Size Modifier + other modifiers.
field[livename].text = "CMB: (" & CMB & ") + modifiers"
field[xSumm].text = "Base (" & CMB & ") = " & BAB & " (BAB) " & STR & " (STR) " & SIZE & " (Size)"
and CMD
Code:
var DEX as number
var SIZE as number
var BAB as number
var ACDefl as number
var ACDodg as number
var CMD as number
DEX = hero.child[aDEX].field[aModBonus].value
SIZE = herofield[tSize].value
BAB = hero.child[Attack].field[tAtkBase].value
ACDefl = hero.child[ArmorClass].field[tACDeflect].value
ACDodg = hero.child[ArmorClass].field[tACDodge].value
CMD = 10 + DEX + BAB + SIZE + ACDefl + ACDodg
~ 10 + BAB + DEX + Dodge + Deflection
field[livename].text = "CMD: (" & CMD & ") + modifiers / ## FF"
field[xSumm].text = "Base (" & CMD & ") = 10 + " & BAB & " (BAB) + " & DEX & " (DEX) + " & SIZE & " (Size) + " & ACDefl & " (Deflect) + " & ACDodg & " (DODGE)"
Second, question I have a strange feat I've encountered that has two separate sets of prerequisites.
Combat Style Master* - Improved Unarmed Strike, two more style feats,
base attack bonus +6 or monk level 5th - May switch styles as a free action
So from what I am understanding from the feat prereqs you need to have
Imp Unarmed Strike, two more style feats +6 base attack OR be a 5th level monk.