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

Old September 17th, 2012, 09:59 AM
Quote:
Originally Posted by GLBIV View Post
I thought it may be that the race types needed to be tweaked, since the BAB and saves are already called from them.

I wonder if a script setting CR as HD/4 on the plant type, for example, would do the trick?
I think it takes more than that, because like I said earlier, every time you add "Extra HD" it adds 1 to the CR regardless of type. So you have to account for that. Here's a possible solution (done for Aberration):

Code:
 ~ Add appropriate CR
  var crbonus as number
  crbonus = hero.childfound[cHelpEHD].field[cTotalLev].value
  crbonus = round(crbonus/4,0,-1)
  crbonus = crbonus - hero.childfound[cHelpEHD].field[cTotalLev].value
  herofield[tCR].value += crbonus
The number in red is the one to change for each type. Otherwise, you should just be able to copy and paste through each of the types in the "MM -Creature types Compiled.user". I added this script to the bottom of the third eval script. I'm going to go through and make the changes for all types then post the file here for you to download. You can then take it and let me know what you think.
Attached Files
File Type: email MM - Creature types Compiled.user (165.4 KB, 11 views)

Last edited by Sendric; September 17th, 2012 at 10:05 AM.
Sendric is offline   #130 Reply With Quote