Editing Standings - xAranaktu/FIFA-23-Live-Editor GitHub Wiki

Standings

Feature is available only in career mode.

This feature allows you to control the league table. However, there may be problems with promotions/relegations for some leagues because of the play-off system

For play-off rounds try to use fixtures editor to decide the winners of games (only for not played games).

Editing Standings

  • Open Team Editor as mentioned in Editing Team

  • Open Standings Tab

If you want to move the team up or down in the table then you should focus on OVERALL tab. Use the "+" to add or "-" to substract points.

The change is saved immediately, so you don't need to "Apply Changes" after to change the points.

The value can't be negative and must be in range between 0 and 254 because the game stores it as as unsigned char

Other Leagues Standings

The tools won't show you exact standings for other leagues unfortunatly (maybe I'll update it in future), but still you should be able apply bonus points allowing you to control promotions/relegations between leagues and winners. Be careful with how much points you add, because the points are stored in memory as unsigned char you may easily overflow the value if you apply to much points to the team. For example, if the team has 90 points and you add them 170 points then the value will overflow and in result the team will have 5 points because:

(90 + 170) - 255 = 5