OKV - Comments

Comments
#849165 A small solution for the Faces and Logos Issue
OKV
6 years ago
1 day ago
6,299
By black_wh11te 05 November 2025 - 07:44 AM UTC 

Is it possible to create the same for Windows users?

 

I'm very lazy because I spend 90% of my time under macOS

#849054 A small solution for the Faces and Logos Issue
OKV
6 years ago
1 day ago
6,299

I have created a script for macOS users.
You need to navigate to the script's path in the terminal:
cd /PATH/
and then run the command:
./fm26_graphics_fix.sh

 

#848164 A small solution for the Faces and Logos Issue
OKV
6 years ago
1 day ago
6,299
By hguy89 02 November 2025 - 15:30 PM UTC 

Thank you, it's really useful. When updates are released, config has to be edited again, as well as all of the PNGs in the zip file, but that's minimal effort. 

 

It worked like a charm and you're the best. Took only a few minutes for me for the longest operation (faces renaming obviously).

Thank you so much for the kind words!! I'm always happy to help <3

 

#847961 Russia - Mir Russian Premier Liga 3D'25/26 for FM26 New! (01/11/25)
OKV
6 years ago
1 day ago
6,299
#847715 3D Kits Official Thread FM 26 (NO REQUESTS)
OKV
6 years ago
1 day ago
6,299

[RUS] Lokomotiv Moscow 1,2,3

 

#847712 A small solution for the Faces and Logos Issue
OKV
6 years ago
1 day ago
6,299
By DJHY1 31 October 2025 - 20:28 PM UTC 

Turns out, for whatever reason, the IDs were duplicated in the actual XML file. Why I would have done that, I cannot tell you.

 

The most important thing is the presence of graphics and a smile on the faces of the players in FM 26)))

#847711 🛠️ Metallic Logos Technical Support Thread
OKV
6 years ago
1 day ago
6,299
By Dirk Wagner 31 October 2025 - 20:17 PM UTC 

The problem is that the logos and the Cut Out Face Pack have the same ID, and this causes problems because not all logos are shown, such as FC Basel or Napoli, etc. If I don't load the face pack, it loads all logos.

 

You can do everything according to my instructions and the schedule will work.

https://sortitoutsi.net/content/74902/a-small-solution-for-the-faces-and-logos-issue

 

#847709 A small solution for the Faces and Logos Issue
OKV
6 years ago
1 day ago
6,299
By DJHY1 31 October 2025 - 20:14 PM UTC 

I cannot imagine why (I've been having the problem all Beta, but no matter what I do, the Brazilian Serie A never has a logo … despite apparently not having a single conflicting ID or file name.

 

#847674 3D Kits 25-26 WIP Thread FM26
OKV
6 years ago
1 day ago
6,299
By hammer9 31 October 2025 - 17:57 PM UTC 

new 3D kits for FM26 yeah?

 

 yes, only 3d

#847616 3D Kits 25-26 WIP Thread FM26
OKV
6 years ago
1 day ago
6,299

Me

Siborg 

Maxi9494

 

russia - mir RLP

#847564 FM26 Logos > Clear Cache
OKV
6 years ago
1 day ago
6,299
By AML 23 October 2025 - 21:18 PM UTC 

Some logos in Italy are not showing. Others are working fine, kits and other graphics work fine, but logos are being blocked by something. At least for me 

 

 

#847545 A small solution for the Faces and Logos Issue
OKV
6 years ago
1 day ago
6,299

For macOS Users

faces:
cd "PATH TO YOUR FACES FOLDER"
for file in *.png; do  if [[ ! "$file" =~ _face***\.png$ ]]; then    mv "$file" "${file%.png}_face.png"  fi done
config.xml for faces:
cd "PATH TO YOUR FACES FOLDER"
sed -i '' 's/from="\([^"]*\)"/from="\1_face***"/g' config.xml

***Logos are processed similarly using the appropriate suffixes (_club, _comp, _conf, _media, _nation)

#847543 A small solution for the Faces and Logos Issue
OKV
6 years ago
1 day ago
6,299

Hello everyone! As we all know, there's an issue with faces and logos that @Derek  mentioned. I've tried to find a way to solve it.


1) Faces fix

Renaming Face Files Using PowerShell (I'm on Windows 10)

First, navigate to your faces folder using the cd command. Then, run the following PowerShell script:
cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\faces***" 
Get-ChildItem -Filter "*.png" | Where-Object { $_.Name -notmatch "_face\.png$" } | ForEach-Object { $newName = $_.BaseName + "_face" + $_.Extension; Rename-Item -Path $_.FullName -NewName $newName -Verbose }

***Make sure to specify your own path to the faces folder.
 

The renaming process took about 25-30 minutes for me.
This command adds the _face suffix to each image filename. For example, 1120.png becomes 1120_face.png.

You will also need to modify your config.xml file. Use the following command for this:

cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\faces***"; (Get-Content config.xml -Raw) -replace 'from="([^"]+)"', 'from="$1_face"' | Set-Content config.xml -Encoding UTF8
 

***But don't forget to specify your own folder path.

2) Logo fix


I use FMG Standard Logos, but I always delete the default, alternatives, fantasy, and retro folders.
 

For clubs/normal folders (123.png → 123_club.png):

cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\clubs\normal" 
Get-ChildItem -Filter "*.png" | Where-Object { $_.Name -notmatch "_club\.png$" } | ForEach-Object { $newName = $_.BaseName + "_club" + $_.Extension; Rename-Item -Path $_.FullName -NewName $newName -Verbose }

For clubs config.xml:

cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\clubs\normal" (Get-Content config.xml -Raw) -replace 'from="([^"]+)"', 'from="$1_club"' | Set-Content config.xml -Encoding UTF8
 

For competitions/normal folders (123.png → 123_comp.png):

cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\competitions\normal" 
Get-ChildItem -Filter "*.png" | Where-Object { $_.Name -notmatch "_comp\.png$" } | ForEach-Object { $newName = $_.BaseName + "_comp" + $_.Extension; Rename-Item -Path $_.FullName -NewName $newName -Verbose }

For competitions config.xml:

cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\competitions\normal" (Get-Content config.xml -Raw) -replace 'from="([^"]+)"', 'from="$1_comp"' | Set-Content config.xml -Encoding UTF8
 

For confederations/normal folders (1.png → 1_conf.png):

cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\confederations\normal" 
Get-ChildItem -Filter "*.png" | Where-Object { $_.Name -notmatch "_conf\.png$" } | ForEach-Object { $newName = $_.BaseName + "_conf" + $_.Extension; Rename-Item -Path $_.FullName -NewName $newName -Verbose }

For confederations config.xml:

cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\confederations\normal" (Get-Content config.xml -Raw) -replace 'from="([^"]+)"', 'from="$1_conf"' | Set-Content config.xml -Encoding UTF8
 

For media/normal folders (adding _media suffix):

cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\media\normal" 
Get-ChildItem -Filter "*.png" | Where-Object { $_.Name -notmatch "_media\.png$" } | ForEach-Object { $newName = $_.BaseName + "_media" + $_.Extension; Rename-Item -Path $_.FullName -NewName $newName -Verbose }

For media config.xml:

cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\media\normal" (Get-Content config.xml -Raw) -replace 'from="([^"]+)"', 'from="$1_media"' | Set-Content config.xml -Encoding UTF8
 

For nations/normal folders (adding _nation suffix):

cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\nations\normal" 
Get-ChildItem -Filter "*.png" | Where-Object { $_.Name -notmatch "_nation\.png$" } | ForEach-Object { $newName = $_.BaseName + "_nation" + $_.Extension; Rename-Item -Path $_.FullName -NewName $newName -Verbose }

For nations config.xml:

cd "C:\Users\okv\Documents\Sports Interactive\Football Manager 26\graphics\logos\nations\normal" (Get-Content config.xml -Raw) -replace 'from="([^"]+)"', 'from="$1_nation"' | Set-Content config.xml -Encoding UTF8
 

Important: Remember to replace the path C:\Users\****\Documents\Sports Interactive\Football Manager 26\graphics\logos\****\**** with your own actual path!
 

#847129 3D Kits Official Thread FM 26 (NO REQUESTS)
OKV
6 years ago
1 day ago
6,299

[RUS] PFC Sochi 1,2,3

 

 

#846914 3D Kits Template Thread for FM26 only
OKV
6 years ago
1 day ago
6,299

You're the best kit maker in the world, thank you so much!

#846869 Transferring 3D outfits from FM24 to FM26 in Photoshop
OKV
6 years ago
1 day ago
6,299

@Bhawkski 
Hi everyone)
I got a little bored and decided to translate v1 and v2 into Russian, but I realized that v2 isn't available in English, so I decided to do an English translation as well.

In the PSD file, we change "Warstwa 1" to "Layer 1" and "Warstwa 2" to "Layer 2" = everything works.

 

#843882 FC’12 Russia - Pari 1st liga 2025-26 [v2.0]
OKV
6 years ago
1 day ago
6,299
#841487 FC’12 Russia - Leon Vtorya Liga A Autumn 2025-26 [v1.5]
OKV
6 years ago
1 day ago
6,299
#839185 FC’12 Russia - Mir Russian Premier Liga 2025-26 [v3.5]
OKV
6 years ago
1 day ago
6,299
By serkantunali 01 September 2025 - 18:33 PM UTC 

How can it be normal for a jersey not to appear in the game even though everything is correct? 

 

you need a fix)

#839160 FC’12 Russia - Mir Russian Premier Liga 2025-26 [v3.5]
OKV
6 years ago
1 day ago
6,299
By serkantunali 01 September 2025 - 11:50 AM UTC 

Dinamo makhackala kıts not see in game

 

this is normal

#839133 FC’12 Russia - Mir Russian Premier Liga 2025-26 [v3.5]
OKV
6 years ago
1 day ago
6,299
#837335 Marat Akhmetzyanov
OKV
6 years ago
1 day ago
6,299
By mons 17 August 2025 - 07:34 AM UTC 

I've no idea what's that supposed to mean 😕

 

I got the id mixed up and made a mistake.

#837244 Marat Akhmetzyanov
OKV
6 years ago
1 day ago
6,299
#835315 FM24 v.24.3 Russia (D5)
OKV
6 years ago
1 day ago
6,299
By Терпкая клюква 01 August 2025 - 08:55 AM UTC 

Привет, так он по моему деньги за него просит. Я не знаю, мб за донат более проработанный апдейт, но что на бесплатной основе… регенов-негров целая куча, формы все по стандарту синие+в бд непрописанные, что исключает реальные формы, в общем, по мелочи косяков очень много. Если бы можно было потестить. 
Как тебе данный апдейт? Прогнал пару сезонов, вроде критических багов не обнаружил.  

 

напиши мне в тг @kingokv

#835290 FM24 v.24.3 Russia (D5)
OKV
6 years ago
1 day ago
6,299
By Терпкая клюква 31 July 2025 - 18:58 PM UTC 

Выглядит круто. А есть ли возможность сделать, чтобы команды вылетали с пятого дивизиона, а влетали уже команды с lower leagues? Не прописывать еще один дивизион, а просто по уровню репутации. 

И еще один вопрос, до какого года был протестирован апдейт и совместим ли он с другими апдейтами лиг?  

 

посмотри апдейт длинного, у него там д9 и составы,лиги актуальные на сезон 24/25

#825379 FM24 v.24.3 Russia (D5)
OKV
6 years ago
1 day ago
6,299

Выглядит интересно

#821350 Belarus FM24 Database
OKV
6 years ago
1 day ago
6,299

You are the best! Thank you for your hard work!

#819875 Akhjad Garisultanov
OKV
6 years ago
1 day ago
6,299
By mons 10 April 2025 - 20:03 PM UTC 

@OKV, I don't know if it's the source which was small or artificially enlarged with AI, or whether you did this yourself, but the majority of images in this pack aren't improvements. If it was you who did whatever effect it is, then please refrain from doing so again.

 

I wrote to the official representative of the team in social networks, and they sent me photos, and I removed the background from them💁🏻‍♀️

#818644 FC'12 Russia - Leon Vtorya Liga A 2025 [v2.5]
OKV
6 years ago
1 day ago
6,299
#816722 FC'12 Download Area 2024/25
OKV
6 years ago
1 day ago
6,299
By Doddo04 07 March 2025 - 18:21 PM UTC 

Sorry that white under the shoulders i think it was a white stripe but that are the sponsors. sorry for that

 

Everything's fine, just write more about the problem next time and I'll fix it. Still, I'm limited in Russia, and to use instagram or Facebook, I need a VPN, and it doesn't always work well) And with dicord, the same problem is that you need a VPN)))