Irgendwo über "Main" einfügen: Code: class Window_MapName < Window_Base def refresh contents.clear unless $game_map.display_name.empty? tmap_name = $game_map.display_name if tmap_name =~ /\\V\[(.*)]/i tmap_name[/\\V\[(.*)]/] = $game_variables[$1.to_i].to_s end draw_background(contents.rect) draw_text(contents.rect, tmap_name, 1) end end end
class Window_MapName < Window_Base def refresh contents.clear unless $game_map.display_name.empty? tmap_name = $game_map.display_name if tmap_name =~ /\\V\[(.*)]/i tmap_name[/\\V\[(.*)]/] = $game_variables[$1.to_i].to_s end draw_background(contents.rect) draw_text(contents.rect, tmap_name, 1) end end end
--
Foren-Regeln