1.167

Users who are viewing this thread

I don't think there is one specifically, but I've been using 4.3 on 1.167 Warband and it's working fine. I don't use the +PBOD though, just the standard Diplo 4.3 release. The only issue I had was the notes menu had a slight bug with text alignment on the sidebar, but that was an easy fix.
 
I hate to bring up an old post, but how did you manage to fix that bug on the sidebar? It's such a little thing but somehow it is really irritating. :razz:
 
I just compared Diplomacy 4.3's game_variables.txt, specifically in the #Notes_window section, with the one from Native, and noticed the Diplomacy one didn't have a few entries, so I just copy pasted (saved the old Diplo txt file to be safe of course), the entries from Native into the Diplomacy 4.3 txt file, and it worked.

Mainly the Diplo4.3 file was missing the note_t_keys_title_ entries that were in Native's, so I added those.

Segment of the game_variables.txt from the Diplo4.3 release:
Code:
#Notes_window
note_i_picture_position_x = 0.1
note_i_picture_position_y = 0.1
note_i_picture_size_x = 0.2
note_i_picture_size_y = 0.2

note_t_keys_position_x = 0
note_t_keys_position_y = 0
note_t_keys_size_x = 0.25
note_t_keys_size_y = 0.1
note_t_keys_text_size_x = 0.02
note_t_keys_text_size_y = 0.02
note_t_keys_text_flags = 0x700

note_t_data_position_x = 0
note_t_data_position_y = 0
note_t_data_size_x = 0.615
note_t_data_size_y = 0.1
note_t_data_text_size_x = 0.02
note_t_data_text_size_y = 0.02
note_t_data_text_flags = 0x700

This was the fixed version:
Code:
#Notes_window
note_i_picture_position_x = 0.1
note_i_picture_position_y = 0.1
note_i_picture_size_x = 0.2
note_i_picture_size_y = 0.2

note_t_keys_position_x = 0
note_t_keys_position_y = 0
note_t_keys_size_x = 0.25
note_t_keys_size_y = 0.1
note_t_keys_text_size_x = 0.02
note_t_keys_text_size_y = 0.02
note_t_keys_text_flags = 0x700

note_t_keys_title_position_x = 0.74
note_t_keys_title_position_y = 0.71
note_t_keys_title_size_x = 0.18
note_t_keys_title_size_y = 0.1
note_t_keys_title_text_size_x = 0.025
note_t_keys_title_text_size_y = 0.025
note_t_keys_title_text_flags = 0x10
note_t_keys_title_text_color = 0xFF000000

note_t_data_position_x = 0
note_t_data_position_y = 0
note_t_data_size_x = 0.615
note_t_data_size_y = 0.1
note_t_data_text_size_x = 0.02
note_t_data_text_size_y = 0.02
note_t_data_text_flags = 0x700

EZ Mode fix: just paste this into your game_variables.txt file after note_t_keys_text_flags = 0x700, which is about 9-10 lines below the #Notes_window comment, midway down the file. Of course back up the original file in case you bork something up.
Code:
note_t_keys_title_position_x = 0.74
note_t_keys_title_position_y = 0.71
note_t_keys_title_size_x = 0.18
note_t_keys_title_size_y = 0.1
note_t_keys_title_text_size_x = 0.025
note_t_keys_title_text_size_y = 0.025
note_t_keys_title_text_flags = 0x10
note_t_keys_title_text_color = 0xFF000000
 
Back
Top Bottom