How to change names in main menu screen?

Users who are viewing this thread

Sauron_mate

Grandmaster Knight
In warband mainmenu, you have 'Start a new game', #Multiplayer, and such, i looked into various py files and still have no clue on how to edit these names.

i know some mod like NW already disable the button 'Start a new game'. but how?
 
Somebody said:
the language csv files determine the name of the menus. Their locations can be changed in game_variables.txt

thanks, and is it possible to remove the 'Start a new game' button like they did on NW?
 
Sauron_mate said:
thanks, and is it possible to remove the 'Start a new game' button like they did on NW?

No, but you can hide it, as Somebody said:
Somebody said:
Their locations can be changed in game_variables.txt

Set the initial size to zero and put it off screen, negative position:
Code:
initial_start_new_game_button_position_x = 0.05
initial_start_new_game_button_position_y = 0.44
initial_start_new_game_button_size_x = 0.185
initial_start_new_game_button_size_y = 0.031
initial_start_new_game_button_text_size_x = 0.022
initial_start_new_game_button_text_size_y = 0.030
 
Back
Top Bottom