been workin on some of the blade skills for the soulknife and one of them is Improved Evasion. so i thought i'd sneak a look at the rogue version of IE to see what they did there.
with the Soulknife version i created, i used a Expr-reqs to put the level requirement in with the expression:
#levelcount[Soulknife] >= 10
but i noticed on the rogue version they used a Pre-reqs to put in the level requirement with this script:
var classcheck as string
var levels as number
classcheck = "Rogue"
call LevPreReqs
validif (levels >= 10)
anyone able to tell me if it would be better to change mine to imitate the rogue version? is the rogue version faster?
with the Soulknife version i created, i used a Expr-reqs to put the level requirement in with the expression:
#levelcount[Soulknife] >= 10
but i noticed on the rogue version they used a Pre-reqs to put in the level requirement with this script:
var classcheck as string
var levels as number
classcheck = "Rogue"
call LevPreReqs
validif (levels >= 10)
anyone able to tell me if it would be better to change mine to imitate the rogue version? is the rogue version faster?