View Single Post
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old January 27th, 2020, 04:38 AM
Quote:
Originally Posted by Illyahr View Post
The Binder's Binding ability (Tome of Magic) is getting the calculation wrong again. It's getting half level first and that screws with the calculation for the binding check bonus.

It needs to calculate full level to set the first part of the summary (EBL = level)
It then needs to calculate checks for the summary (1d20 + level + charisma)
It's only after that that level gets cut in half for the summary (10 + 1/2 level + cha)
Try this:

Code:
      var level as number
      var check as number
      var difficulty as number
      level = hero.childfound[xBind].field[Value].value
      check = level + #attrmod[aCHA]
      difficulty = 10 + #attrmod[aCHA] + round(level/2,0,-1)
Sendric is offline   #958 Reply With Quote