If you're using Yanfly Core Engine, insert this script below YEA core
class Window_Base < Window def draw_actor_simple_status(actor, dx, dy) draw_actor_name(actor, dx, dy) draw_actor_level(actor, dx, dy + line_height * 1) draw_actor_icons(actor, dx, dy + line_height * 2) dw = contents.width - dx - 124 draw_actor_class(actor, dx + 120, dy, dw) draw_actor_mp(actor, dx + 120, dy + line_height * 2, dw) endendIf you're not
class Window_Base < Window def draw_actor_simple_status(actor, x, y) draw_actor_name(actor, x, y) draw_actor_level(actor, x, y + line_height * 1) draw_actor_icons(actor, x, y + line_height * 2) draw_actor_class(actor, x + 120, y) draw_actor_mp(actor, x + 120, y + line_height * 2) endend