ShadowChemosh
Well-known member
Tip#7
When doing a Pre-Req for validation script for Feats be sure we are using the macro #featlevelcount[] instead of #levelcount[]. This allows classes that "Count As" the class to select these feats still. In example if a class "counts as fighter" for purposes of feats we need to correctly take that into account.
For some of the 3PP stuff like Ultimate Psionics you should be calling a procedure like so:
Went through what I could find in the 3PP stuff and changed the macros to #featlevelcount[]. So another 'FYI' for the future.
When doing a Pre-Req for validation script for Feats be sure we are using the macro #featlevelcount[] instead of #levelcount[]. This allows classes that "Count As" the class to select these feats still. In example if a class "counts as fighter" for purposes of feats we need to correctly take that into account.
For some of the 3PP stuff like Ultimate Psionics you should be calling a procedure like so:
Code:
var classcheck as string
var levels as number
classcheck = "Cryptic"
call PUPreReqs
validif (levels >= 6)
Went through what I could find in the 3PP stuff and changed the macros to #featlevelcount[]. So another 'FYI' for the future.
