Standings - xAranaktu/FIFA-22-Live-Editor GitHub Wiki
Standings
This feature requires Live Editor v22.1.1.5 or newer
Feature is available only in career mode.
To load standings editor simply find the team in teams editor and the click on "Standings" on the list on the right side (as on the screen below)
Editing Standings
This feature allows you to edit league points gathered by the team during season. You should be able to edit league standings at any point of the season
Use the "+" to add or "-" to substract 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
For play-off rounds use Fixtures to decide the winners of games (but will work only for not played games).
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