Sid Meier's Civilization VI

Sid Meier's Civilization VI

Even More Reports
[ Fix ] Broken Diplomacy Tab Words/Characters
Please leave any comment or give cheap award to this post, so it stays at the top and more people can see !! Thank you

For all my non native English speaking folks, I come to you with Solution to "Diplomacy Tab turning into squares" problem !!

The square problem is due to font problem.

Civ 6 uses different fonts for each language (especially Asian lang.).

You can check what fonts are used for each language here:

Steam > steamapps > common > Sid Meier's Civilization VI > Base > Assets > UI > Fonts

** KO, JP, CN, HK lang. users will probably have to use "NotoSans" font. **
(I recommend checking it yourself tho)

Open the .xml file with your language name.

Copy the " your-font-name.otf " part.

** (It was " NotoSansCJKkr-Regular.otf " in my case <-- currently using Korean as game lang.) **

Go to this mod's location:

Steam > steamapps > workshop > content > 289070 > 1674839844 > EMR_Diplomacy.xml

Open EMR_Diplomacy.xml file with Notepad++ (You can use regular Notepad, but Notepad++ is way better in editing codes).

Replace ALL " MyriadPro-Regular.otf " with " your-font-name.otf " you copied above.

Save the file and enjoy the game !!

(The downside to this is whenever the game itself or the mod is updated/altered, you have to replace the Font again... Unless the author implements this fix. Unfortunately, it seems that the author is no longer interested in maintaining this mod so you are on your own for now haha !)



< Example > - ** (Mine looks like this: ) **

======================================

<Box ID="GlobalDiploHeader" Size="parent,40" Offset="0,0">
<Image Size="parent,40" Texture="Controls_SubHeader2" />
<Label ID="CivHeader" Anchor="L,C" Offset="15,0" Font="NotoSansCJKkr-Regular.otf" FontSize="20" FontStyle="glow" Color="206,218,225,255" EffectColor="74,108,37,191" String="LOC_EMR_CIV"/>
<Label ID="CivHeader" Anchor="L,C" Offset="350,0" Font="NotoSansCJKkr-Regular.otf" FontSize="20" FontStyle="glow" Color="206,218,225,255" EffectColor="74,108,37,191" String="LOC_EMR_GOVERNMENT"/>
<Label ID="CivHeader" Anchor="L,C" Offset="530,0" Font="NotoSansCJKkr-Regular.otf" FontSize="20" FontStyle="glow" Color="206,218,225,255" EffectColor="74,108,37,191" String="LOC_EMR_WONDERS"/>
<Label ID="CivHeader" Anchor="L,C" Offset="770,0" Font="NotoSansCJKkr-Regular.otf" FontSize="20" FontStyle="glow" Color="206,218,225,255" EffectColor="74,108,37,191" String="LOC_EMR_DIPLOMACY"/>
</Box>

<ScrollPanel ID="GlobalDiploScrollPanel" Offset="0,50" Size="parent,parent-80" FullClip="1" Vertical="1" AutoScrollBar="1">
<Stack ID="CivStack" StackGrowth="Down" Offset="0,0" StackPadding="10" />
<ScrollBar ID="GlobalDiploScrollbar" Anchor="R,C" Offset="8,0" Size="12,parent" Style="ScrollVerticalBar" Color="57,48,42,200" />
</ScrollPanel>


</Container>
</Instance>

<!-- ================================================================== -->
<!-- Instances -->
<!-- ================================================================== -->

<!-- Civ instance -->
<Instance Name="CivInstance">
<Container ID="Content" Anchor="L,T" Size="parent,180" >

<!-- portrait and icon -->
<Image ID="Portrait" Anchor="L,T" Offset="7,15" Size="128,128" Texture="HBLeaders128.dds" />
<Image ID="CivIcon" Texture="CivDefaults45" Size="45,45" Anchor="L,T" Offset="90,95"/>

<!-- leader name, civ name, civics era and tech era -->
<Label ID="CivLeaderName" Anchor="L,T" Offset="150,20" Font="NotoSansCJKkr-Regular.otf" FontSize="18" FontStyle="glow" Color="206,218,225,255" EffectColor="74,108,37,191" String=""/>
<Label ID="CivName" Anchor="L,T" Offset="150,42" Font="NotoSansCJKkr-Regular.otf" FontSize="16" FontStyle="glow" Color="206,218,225,255" EffectColor="74,108,37,191" String=""/>
<Label ID="CivCivicEra" Anchor="L,T" Offset="150,74" Font="NotoSansCJKkr-Regular.otf" FontSize="16" FontStyle="glow" Color="206,218,225,255" EffectColor="74,108,37,191" String=""/>
<Label ID="CivTechEra" Anchor="L,T" Offset="150,96" Font="NotoSansCJKkr-Regular.otf" FontSize="16" FontStyle="glow" Color="206,218,225,255" EffectColor="74,108,37,191" String=""/>
<Label ID="EraAgeType" Anchor="L,T" Offset="150,126" Font="NotoSansCJKkr-Regular.otf" FontSize="16" FontStyle="glow" Color="206,218,225,255" EffectColor="74,108,37,191" String=" Age"/>

<!-- government -->
<Label ID="CivGovernment" Anchor="L,T" Offset="351,20" Font="NotoSansCJKkr-Regular.otf" FontSize="16" FontStyle="glow" Color="206,218,225,255" EffectColor="74,108,37,191" String=""/>
.
.
.

================================
Last edited by Johnnie Worker; 27 Apr, 2024 @ 10:41am