• This is a reminder of 3 IMPORTANT RULES:

    1- External self-promotion websites or apps are NOT allowed here, like Discord/Twitter/Patreon/etc.

    2- Do NOT post in other languages. English-only.

    3- Crack/Warez/Piracy talk is NOT allowed.

    Breaking any of the above rules will result in your messages being deleted and you will be banned upon repetition.

    Please, stop by this thread SoccerGaming Forum Rules And Guidelines and make sure you read and understand our policies.

    Thank you!

Rendered Minifaces pack

Aranaktu

Club Supporter
I've rendered the minifaces for 18989 players using the player capture system created by EA, game is using this for created players and homegrown talents. The minifaces are matching the player in-game appearance. I've used the squadfile from 5th Feb 2021, so you won't find minifaces for icons, managers and volta characters.

For easier use I've splited the minifaces between 3 categories:

1. All (18989 minifaces) - all minifaces that I've generated
2. Players that doesnt have one (2916 minifaces) - minifaces for players that doesn't have a miniface (replacement for all gray silhouettes)
3. Clubs - Miniface segregated by club, so if you need only minifaces for FC Barcelona players then download the FC Barcelona folder. The minifaces for players in non-playable clubs are in "NotFound" folder.

Requirements:
FIFA 21 Live Editor

How to install:

1. Unzip archive
2. Move the LiveEditorMods folder to root game directory 3. Run the game & Live Editor


Download:
MEGA.NZ



 

Aranaktu

Club Supporter
Would it be possible to share the code or something to get Minifaces for completly new players too?
I've added this feature in FIFA 21 Live Editor v21.1.0.5.

There is "Generate miniface" button on the right side in players editor.



It's also possible to mass generate minifaces with lua script, for example:
Code:
local data = {
    158023,
    20801
}

local bIsInCM = IsInCM();
if (bIsInCM) then
    for i=1, #data do
        local playerid = data[i]
        local teamid = GetTeamIdFromPlayerId(playerid)
        if (teamid <= 0) then
            teamid = 111
        end
       
        -- You need to manually create the "generated minifaces" folder in your game root directory
        -- Or just change the output path to the path that exists
        local path = string.format("generated minifaces/p%d.DDS", playerid)
        AddMinifaceToGenerate(playerid, teamid, path)
    end
    Log("Start Generating")
    GenerateMinifaces()
end
 


Top