# * Face Graphics Addition script by mewsterus # * To install, just insert this in a descriptive code slot right above Main # * # * Face graphic should be 80x80 pixels and the same name as the character # * graphic. Place graphics in the Graphics/Pictures directory #=============================================================================== # ¦ Window_Base #------------------------------------------------------------------------------- # Face graphic added #=============================================================================== class Window_Base #----------------------------------------------------------------------------- # @ Draw face graphic #----------------------------------------------------------------------------- def draw_actor_graphic(actor, x, y) if $game_party.actors.size != 0 bitmap = RPG::Cache.picture(actor.character_name) self.contents.blt(x - 40, y - 80, bitmap, Rect.new(0, 0, 80, 80)) end end end #=============================================================================== # ¦ Main #------------------------------------------------------------------------------- # Edited by mewsterus #=============================================================================== begin $face_enabled = true end