• 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

CMB/CMD Question and Odd Feat Prereqs

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.

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.
 
Per the pathfinder rules: Improved Unarmed Strike, two or more style feats, base attack bonus +6 or monk level 5th.

Notice the comma seperation. The 5th level monk only takes over the base attack +6. so in any case you need Improved Unarmed Strike (which monks get anyway), and two or more combat style feats.
 
Back
Top