Well, go into Game_Battler 1
scroll down a little bit to a heading that says
*Get Maximum Hp
Then change
def maxhp
n = [[base_maxhp + @maxhp_plus, 1].max, 99999].min
for i in @states
n *= $data_states.maxhp_rate / 100.0
end
n = [[integer(n), 1].max, 99999].min
return n
end
to
def maxhp
n = [[base_maxhp + @maxhp_plus, 1].max, <Insert Wanted Number here>].min
for i in @states
n *= $data_states.maxhp_rate / 100.0
end
n = [[integer(n), 1].max, <Here too>].min
return n
end