Lone Wolf Development Forums  

Go Back   Lone Wolf Development Forums > Hero Lab Forums > HL - d20 System
Register FAQ Community Today's Posts Search

Notices

Reply
 
Thread Tools Display Modes
JustinThomason
Senior Member
 
Join Date: Jan 2012
Location: Los Angeles, CA
Posts: 281

Old February 14th, 2015, 09:43 AM
The in-play adjustment for Enlarge Person does not increase the damage dice. For instance, my barbarian's great axe stays 1d12 instead of increasing to 3d6.
JustinThomason is offline   #1 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old February 14th, 2015, 11:03 AM
Thanks. I'll check it out.
Sendric is offline   #2 Reply With Quote
mirtos
Senior Member
 
Join Date: Oct 2011
Posts: 865

Old February 14th, 2015, 11:01 PM
Until Sendric makes the change, its an easy fix.

its likely a typo... Currently its based as if there was an "increment" as opposed to a hard coded one...

in the first eval script.


~ Add to size - must come after race and template size set
herofield[tSize].value += field[pAdjust].value

~ Decrease the size of all our equipment by 1 (apart from unarmed
~ strike, which changes automatically)
foreach pick in hero from MyGear where "!wCategory.Unarmed"
eachpick.field[gSizeMod].value += field[pAdjust].value
nexteach


just change field[pAdjust].value to 1 and it will work fine OR make it so that we can adjust the amount, but i think the former is the right way to go... (which is that checkbox that says "no increment, if you arent familiar with the editor)

In the meantime, Until Sendric can make changes, you could just copy or edit it yourself and make that change....
mirtos is offline   #3 Reply With Quote
JustinThomason
Senior Member
 
Join Date: Jan 2012
Location: Los Angeles, CA
Posts: 281

Old February 16th, 2015, 08:09 PM
Thanks for the tip Mirtos.
JustinThomason is offline   #4 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old February 17th, 2015, 07:44 AM
Alright, I see the problem. There is no pAdjust field for this adjustment. There were a few other issues as well, all of which I have resolved. That said, this is somewhat redundant. There is also a Size Category adjustment that you can use instead of this one if you don't want to make the following edits. If you do, these are the updated scripts for this spell adjustment that will be available with the next release:

Script 1 (First/2000):
Code:
~ If we're not enabled, get out now
      doneif (field[pIsOn].value = 0)

~ Add to size - must come after race and template size set
      herofield[tSize].value += 1

~ Increase the size of all our equipment by 1
      foreach pick in hero from MyGear
       eachpick.field[gSizeMod].value += 1
      nexteach

~ Add a +2 size bonus to our Str
      hero.child[aSTR].field[Bonus].value += 2

~ Add a -2 size penalty to our Dex
      hero.child[aDEX].field[Bonus].value -= 2
Script 2 (Post-Levels (Users))
Code:
~ If we're not enabled, get out now.
doneif (field[pIsOn].value = 0)

foreach pick in hero from BaseNatWep where "!SpecSource.HalfDragon"
  eachpick.field[wDamage].value += field[pAdjust].value
nexteach
Sendric is offline   #5 Reply With Quote
mirtos
Senior Member
 
Join Date: Oct 2011
Posts: 865

Old February 17th, 2015, 11:48 AM
Thanks for the updated Script Sendric.

so tSize does what we used to have to do for the AC, right?

Last edited by mirtos; February 17th, 2015 at 11:51 AM.
mirtos is offline   #6 Reply With Quote
Sendric
Senior Member
 
Join Date: Jul 2010
Posts: 3,147

Old February 17th, 2015, 05:03 PM
Quote:
Originally Posted by mirtos View Post
Thanks for the updated Script Sendric.

so tSize does what we used to have to do for the AC, right?
Yep. The AC automatically adjusts for size.
Sendric is offline   #7 Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -8. The time now is 04:20 PM.


Powered by vBulletin® - Copyright ©2000 - 2024, vBulletin Solutions, Inc.
wolflair.com copyright ©1998-2016 Lone Wolf Development, Inc. View our Privacy Policy here.