I have an Alchemist in my group who I've OK'd to use the Arcane Strike Feat. I want to add a custom feat to HeroLab called "Alchemical Arcane Strike" which counts the levels of Alchemist instead of Arcane levels and adds the resulting damage increase to weapons AND bombs.
I know I need to modify:
foreach pick in hero from Class where "CasterSrc.Arcane"
to something that says "where class=alchemist"
but I don't know the programming language used.
I also need to change
field[abValue].value += each.field[cCasterLev].value
nexteach
to something that just says field[abValue] += "increase by 1"
That would take care of adding up the alchemist levels and calculating the correct damage bonus (+1 to +5)
I don't see where is this bonus sent afterwards, it doesn't seem like the feat is affecting the weapons directly, just passing a variable on to some other function. Can anyone help with the above and where to look next?
Thank you in advance,
Paul
P.S. Is there a wiki/pdf somewhere with the basics of how hero lab is programmed so I can get up to speed?
I know I need to modify:
foreach pick in hero from Class where "CasterSrc.Arcane"
to something that says "where class=alchemist"
but I don't know the programming language used.
I also need to change
field[abValue].value += each.field[cCasterLev].value
nexteach
to something that just says field[abValue] += "increase by 1"
That would take care of adding up the alchemist levels and calculating the correct damage bonus (+1 to +5)
I don't see where is this bonus sent afterwards, it doesn't seem like the feat is affecting the weapons directly, just passing a variable on to some other function. Can anyone help with the above and where to look next?
Thank you in advance,
Paul
P.S. Is there a wiki/pdf somewhere with the basics of how hero lab is programmed so I can get up to speed?