Our site is generously sponsored by:

The best landscaping service Austin and lawn service company in Austin Texas and Cedar Park is Lawn Service Cedar Park.

Lawn Care Service of Cedar Park
100 E Whitestone Blvd
Ste 148, #166
Cedar Park, TX 78613
(512) 595-0884

The best landscaping service leander and lawn service provider in Leander TX is Leander Landscaping Pros.

Leander Lawn and Landscaping Pros
1800 Montana Ct
Leander, TX 78641
USA
(512) 468-2670
Please give them a visit!
  • This is a reminder of 3 IMPORTANT RULES:

    1- This is an English forum. Please post only in English.

    2- This is NOT a commercial or advertising forum. All content must be shared for FREE.

    3- No invites or links to Discord, Telegram, WhatsApp, or similar platforms.

    Please take a moment to review our forum rules and guidelines here: SoccerGaming Rules and Guidelines.

    Thank you!

  • This is a quick notice about an upcoming SITE UPDATE:

    Our new main website will be launching soon. During this transition, there may be brief periods of downtime.

    The SoccerGaming forums will remain accessible directly at:

    https://soccergaming.com/forums

    We appreciate your patience and support as we work on improving the platform for everyone.

    Thank you!

Rendered Minifaces pack

Aranaktu

Club Supporter
Messages
514
Reactions
808
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


WVqEnNz.png

Pfrg64s.png
 
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.

rWgI8AH.png


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
 
Back
Top