View Single Post
Mathias
Senior Member
Lone Wolf Staff
 
Join Date: May 2005
Posts: 13,213

Old June 28th, 2010, 07:46 AM
Sorry to hit you again, but once thing that may cut a bit of typing:

in Hero Lab, X = X + Y can be written as: X += Y

That means that:

hero.child[svFort].field[svBase].value = hero.child[svFort].field[svBase].value +2

can be written as:

hero.child[svFort].field[svBase].value += 2
Mathias is offline   #8 Reply With Quote