02-19-2014, 06:26 PM
I actually wrote a "Show HP cost in Window_Skill" script, if you'd like it. it is basically
It is compatible with VVulf's skills cost HP script.
Code:
#draw costs
if skill.hp_cost == 0
self.contents.draw_text(x + 232, y, 48, 32, skill.sp_cost.to_s, 2)
else
self.contents.font.color = text_color(2)
self.contents.draw_text(x + 232, y, 48, 32, skill.hp_cost.to_s + $data_system.words.hp, 2)
end