How do I make my module multiplayer only?

Users who are viewing this thread

I think there is an option in module.ini like "has_singleplayer" or so. You can also but # infront of the position of the singleplayer-related buttons in game_menus.txt.

By the way, for such minor questions, use the Q&A thread :razz:
 
Namakan said:
I think there is an option in module.ini like "has_singleplayer" or so. You can also but # infront of the position of the singleplayer-related buttons in game_menus.txt.

By the way, for such minor questions, use the Q&A thread :razz:

Alright, thanks man! :smile:
 
GUYs above,there is NOT any "has singleplayer" option in module.ini,okay?

To hide singleplayer mode,just open game_variables.txt,find these text:#main menu (initial)
Blow that there are position setting of the buttons in main menu:
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
initial_start_new_game_button_text_flags = 0x10
initial_start_new_game_button_text_color = 0xFF110000
initial_start_new_game_button_highlight_text_color = 0xFFFFDD00

initial_resume_game_button_position_x = 0.05
initial_resume_game_button_position_y = 0.40
initial_resume_game_button_size_x = 0.185
initial_resume_game_button_size_y = 0.031
initial_resume_game_button_text_size_x = 0.022
initial_resume_game_button_text_size_y = 0.030
initial_resume_game_button_text_flags = 0x10
initial_resume_game_button_text_color = 0xFF110000
initial_resume_game_button_highlight_text_color = 0xFFFFDD00


Set a position out of screen for "start new game" and "resume game" buttons,and they would be hidden.

 
Back
Top Bottom