CM Unsupported - xAranaktu/FC-26-Live-Editor GitHub Wiki

Career Mode Unsupported Teams And Leagues

On February 3, 2026, in FC 26 version 1.4.2, EA added two new functions:

  • DeleteUnsupportedCMLeagues
  • DeleteUnsupportedCMTeams

These functions use a hard-coded list of teams and leagues that are allowed in Career Mode. Anything not on the list is deleted when you start a new career. Because the list is hard-coded, you can’t alter it by editing any database tables or legacy files. The change must be made in the game code. That’s why Live Editor provides a solution to this problem.

Solution

This functionality requires Live Editor v26.2.6 or newer

Live Editor allows you to control which team/league is deleted.

You can do it by creating new LE_CM_SUPPORTED_LEAGUES_AND_TEAMS.csv file in C:\FC 26 Live Editor\mods\legacy\data folder. (or add it to data folder in legacy files in your mod)

The file must contain 6 columns:

  • id - Team ID or League ID depends on is_league field
  • is_league - 1 or 0. Should be 1 if the id is league, otherwise set it to 0
  • is_supported - 1 or 0. 1 if you want to keep team/league, 0 if you want to delete it
  • delete_players - 1 or 0. Delete players when delete team
  • delete_player_related_records - 1 or 0. Delete records from teamplayerlinks, playerloans etc. delete_players must be equal to 1 for this to work
  • delete_manager. 1 or 0. Delete manager when delete team. I think it should always be 1

Example

Example content of the LE_CM_SUPPORTED_LEAGUES_AND_TEAMS.csv file.

Made only for demonstration purpose.

DOWNLOAD TEMPLATE FILE: LE_CM_SUPPORTED_LEAGUES_AND_TEAMS.csv

id,is_league,is_supported,delete_players,delete_player_related_records,delete_manager
111114,0,1,0,0,0
111205,0,1,0,0,0
1337,0,0,1,0,1
1318,0,0,1,0,1
20,1,0,1,0,1

It will:

  • Delete Germany National Team (ID: 1337)
  • Delete England National Team (ID: 1318)
  • Delete all teams in Bundesliga 2 (ID: 20)
  • Prevent the game from deleting Saudi Arabia National Team (ID: 111114)
  • Prevent the game from deleting Classic XI (ID: 111205)

Testing

Live Editor will log every attempt to delete league or team. Start new career and check in log file for Delete league team data or Delete full league data entries to figure out which teams and leagues are deleted from the game.

Also, if you want to modify LE_CM_SUPPORTED_LEAGUES_AND_TEAMS.csv without restarting the game do the following:

  1. Load career mode
  2. Modify LE_CM_SUPPORTED_LEAGUES_AND_TEAMS.csv file
  3. Exit career mode
  4. Start new career (at this point live editor should load fresh copy of the LE_CM_SUPPORTED_LEAGUES_AND_TEAMS.csv file)

FAQ

  • Do I always need Live Editor to make this work?
    • Yes. The entire logic is implemented in Live Editor. If you play without Live Editor, the game will use its original code.