for i in 0...$game_party.actors.size
x = i * XX
y = i * XX
actor = $game_party.actors
name = actor.id.to_s + "_h"
bitmap = Bitmap.new("Graphics/Pictures/#{name}")
src_rect = Rect.new(0, 0, bitmap.width, bitmap.height)
self.contents.blt(x ,y, bitmap,src_rect)