23-12-2006, 02:15 PM
in your server code, in mod gamelogic
replace this:
with this:
I think thats what you're trying to achieve, if not, post again.
replace this:
Code:
Function GetClassMaxHP(ByVal ClassNum As Long) As Long
GetClassMaxHP = (1 + Int(Class(ClassNum).STR / 2) + Class(ClassNum).STR) * 2
End Function
with this:
Code:
Function GetClassMaxHP(ByVal ClassNum As Long) As Long
GetClassMaxHP = Class(ClassNum).STR * Class(ClassNum).DEF
End Function
I think thats what you're trying to achieve, if not, post again.