@ultramarine: Please, don't ever ever just post that. It's rather annoying, and has no valid point. You didn't say how. If I were to go in the General support forum, I could easily say 90% of the crap in there could be done with scripts, and walk out. But because it offers nothing, I don't.
Find this method in Game_Party
#--------------------------------------------------------------------------
# * Increase Steps
#--------------------------------------------------------------------------
def increase_steps
@steps = [@steps + 1, 9999999].min
end
Make the changes to make it look like so:
#--------------------------------------------------------------------------
# * Increase Steps
#--------------------------------------------------------------------------
def increase_steps
@steps = [@steps + 1, 9999999].min
@actors.each do |actor|
# Choose 1 of the following:
# Direct Number
actor.hp += X
# Percent
actor.hp *= (1 + x)
end
end
To Add a direct amount, use the direct amount line and change the X with what amount you wish to restore.
To Add a percent, use the percent line, and the change the x with the decimal equal to the percent (30% = .3)
Let me know if you need anything.