Insert this script above whatever CMS your using
class Window_Base < Window
def face
face = RPG::Cache.picture("")
end
def draw_face(actor,x,y)
face = RPG::Cache.picture(actor.name + "_face") rescue face
fw = face.width
fh = face.height
src_rect = Rect.new(0, 0, fw, fh)
self.contents.blt(x , y - fh, face, src_rect)
end
end
than search for Window_MenuStatus if using default cms it's just called Window_MenuStatus and on that page replace draw_actor_graphic(actor, x - 40, y + 80) or w/e your x and y are set to and replace them with
draw_face(actor, x - 40, y + 80) and change x and y's to your liking also the faceset for the menus ect go into the
PICTURES folder with the actors name and than _face do that with any other thing you want to change default graphics to you'll also have to make the facesets smaller maybe half around the size of a normal sprite