• 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!

FIFA 22 Live Editor

Aranaktu

Club Supporter
My plans for Live Editor is to make all in one tool. Modding, editing game memory, editing database, API for developers and many other features that you never dreamed about.

For now this tool allows you to:

- Mod almost all legacy files (add or replace)
- Edit Players
- Edit Teams
- Transfer & Loan Players
- Generate Minifaces
- Edit Database (only tables that are part of the squadfile)
- Execute custom lua scripts. Check LUA API

If you don't know how to use tool, Check the Getting Started Guide








Download:
- GitHub
 
Last edited:

KamArnett

Club Supporter
Hey, the editor keeps closing my game whenever I try to edit players and clubs. No crash message or log either. Could you help me with that?
 

christophe83460

Senior Squad
the more I update and the less the tool works. last update like robson and the brand me soon available and very strange works very well with a french friend. otherwise the tool works very well to import the files thank you for your work
 

Aranaktu

Club Supporter
FIFA 22 Live Editor v22.1.0.4



Code:
v22.1.0.4:
    - Added "Manager" to Teams Editor
    - Editing user team transferbudget in Teams Editor will now also update club finances
    - Fixed "Team Not Found" that occured for "Rest of World" league teams.
    - Minifaces can be now generated also outside of Career Mode.
    - Changed default camera when generating miniface from "Head and Shoulders" to "Head" (the same that were used in FIFA 21)

Download:
- GitHub
 

gabrimo

Youth Team
Hello all, here's a script for those who want to generate rendered minifaces for all players in the base game. Credit to Aranaktu for both codes (I just merged them).

Code:
if not IsInCM() then return end

local bIsInCM = IsInCM();

PlayerCaptureSetOutputDirectory("LiveEditorMods\\root\\Legacy\\data\\ui\\imgAssets\\heads")

-- 0 - Head and shoulders
-- 1 - Head
-- 2 - Body
PlayerCaptureSetCamera(1)

-- 256x256
PlayerCaptureSetSize(256, 256)

-- Image Type
-- 0 - PNG
-- 1 - DDS
PlayerCaptureSetType(1)
    
-- Reload Database in Live Editor memory
ReloadDB()

-- Get all rows for players table
local rows = GetDBTableRows("players")

for i=1, #rows do
    local player = rows[i]
    local iplayerid = math.floor(player.playerid.value)

    if (iplayerid > 0 and iplayerid < 280000) then
        local teamid = GetTeamIdFromPlayerId(iplayerid)
        PlayerCaptureAddPlayer(iplayerid, teamid)
    end
end
PlayerCaptureStart()

This may help people who don't know anything about coding. Just run the Live editor, open the lua engine, paste the code and execute it.

PS- The generation takes time, like a lot of it, at least 10 to 11 hours on most machines.
 

barcafan11

Youth Team
Hello all, here's a script for those who want to generate rendered minifaces for all players in the base game. Credit to Aranaktu for both codes (I just merged them).

Code:
if not IsInCM() then return end

local bIsInCM = IsInCM();

PlayerCaptureSetOutputDirectory("LiveEditorMods\\root\\Legacy\\data\\ui\\imgAssets\\heads")

-- 0 - Head and shoulders
-- 1 - Head
-- 2 - Body
PlayerCaptureSetCamera(1)

-- 256x256
PlayerCaptureSetSize(256, 256)

-- Image Type
-- 0 - PNG
-- 1 - DDS
PlayerCaptureSetType(1)
   
-- Reload Database in Live Editor memory
ReloadDB()

-- Get all rows for players table
local rows = GetDBTableRows("players")

for i=1, #rows do
    local player = rows[i]
    local iplayerid = math.floor(player.playerid.value)

    if (iplayerid > 0 and iplayerid < 280000) then
        local teamid = GetTeamIdFromPlayerId(iplayerid)
        PlayerCaptureAddPlayer(iplayerid, teamid)
    end
end
PlayerCaptureStart()

This may help people who don't know anything about coding. Just run the Live editor, open the lua engine, paste the code and execute it.

PS- The generation takes time, like a lot of it, at least 10 to 11 hours on most machines.
This code doesnt work .
 

gabrimo

Youth Team
This code doesnt work .
I'm positive it does work cause I used myself, but it takes some minutes to start to create faces in the folder because the amount of player to be stored before the actual generation starts. You can confirm that the script is correct changing this line from this:

Code:
if (iplayerid > 0 and iplayerid < 280000)

To this:

Code:
if (iplayerid > 0 and iplayerid < 100)

Doing so should create Iniesta miniface only, of course that in this case the generation will be instantly because only one valid player was found on that ID range.
 

Aranaktu

Club Supporter
FIFA 22 Live Editor v22.1.0.5



Added "Kits" to the Teams Editor (UI for teamkits and competitionkits tables). Basically, same thing that is available in cheat table, but with named competitions instead of IDs.

Code:
v22.1.0.5:
    - Added manager bodytypecodes 
    - Added "Kits" to Teams Editor

Download:
- GitHub

FIFA 22 Live Editor v22.1.0.6

Fixed what Title Update 3 has broken.

Code:
v22.1.0.6:
    - Fixed creating transfer/loan offer for player in player career mode.

Download:
- GitHub
 

Bodhisatwa

Club Supporter
Hello,
My FIFA 22, only works with Live Editor v22.1.0.4, after that version the game always crash (... i´ve tried versions ...5,6,7).
The last line of log is "[19:13:21.176] [DEBUG] dcomp.dll 0x7FFC33F30000 - 0x7FFC34115000 (C:\WINDOWS\SYSTEM32\dcomp.dll)"
Please can anyone help me, please.
Thanks.
 

Aranaktu

Club Supporter
Hello,
My FIFA 22, only works with Live Editor v22.1.0.4, after that version the game always crash (... i´ve tried versions ...5,6,7).
The last line of log is "[19:13:21.176] [DEBUG] dcomp.dll 0x7FFC33F30000 - 0x7FFC34115000 (C:\WINDOWS\SYSTEM32\dcomp.dll)"
Please can anyone help me, please.
Thanks.
Put full log file.
 


Top