I feel bad coming here asking questions over and over again however, in my defense, I do search for an answer first and I did not do well in my programming class when I was working on my BA degree. I may have a few more questions as I work on this or one of the other prestige classes, so I will keep this post instead of making more. With that said my question is,
I am attempting to create a prerequisite for the class which is the character must have a BAB >= 3. This is what I have so far, which I placed in the "Pre-reqs" section of my new Knight in the "Class Level" tab. It seems to be working correctly however, I want to check that I have done it right and am not creating an error which will come back and bite me.
Is this okay, am I doing it wrong, is there a better way to do it?
I am attempting to create a prerequisite for the class which is the character must have a BAB >= 3. This is what I have so far, which I placed in the "Pre-reqs" section of my new Knight in the "Class Level" tab. It seems to be working correctly however, I want to check that I have done it right and am not creating an error which will come back and bite me.
Code:
Message: BAB must be >= +3
Pre-requisite Script:
@valid = 0
if (#BAB[] >= 3) then
@valid = 1
endif
Last edited: