NEW RELEASE
Beta version 0.4
Changelog:
- Kits Editor Added
- Settings added, you can now fix any issue you have with the game reading the database quickly. I'll explain below.
Download:
MediaFire is a simple to use free service that lets you put all your photos, documents, music, and video in a single place so you can access them anywhere and share them everywhere.
www.mediafire.com
View attachment 10200View attachment 10201
Howto Settings:
The editor is designed to read the tables e.g. teams, lineups, kits, players between different HEX offsets in the database. In 99.9% of issues is because something has changed in your database and the offset the editor tries to find doesn't exist anymore.
I know the below is complex but can assist some of the advance users to debug themselves.
Let me explain below how I find the offsets, we'll use the Teams table. The teams table starts at after the following HEX string:
FF005553412057377300000000000000000000000000000000000000000000000000723773775F75736100000000
View attachment 10197
But now you'll notice that the actual table only starts after the matched HEX string e.g. E903 is the start of the teams table. We search before it so that we can get the full table, as if something in the new zealand teams change we will never match it again.
So we need to add an offset to say find this string FF005553412057377300000000000000000000000000000000000000000000000000723773775F75736100000000, now after 46 bytes, that's where the table starts. In the editor settings it will look like this:
View attachment 10198
The end portion of the table is matched by EA030000000827060200000000001000000010000200000000001000000010000000000000000000000000000000, you will see that we actually start reading where the player DB starts, and therefore we don't need to make changes in the offsets.
View attachment 10199