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

editing

K

koek7

Guest
I haven't got this new game yet, and I haven't seen it anywhere in the shops either, but from what I read around here, it sure looks promising!

What I want to know: just how much can you edit in Uefa? Is it as much as in FIFA, meaning player names + atributes AND team names and jersey's? If that's the case I for sure gonna try this one out.
 
J

Jon Watson

Guest
You can edit existing team names and player names. You can also edit team kits and players appearances. There is also the opportunity to create custom teams.
 

Alenitchev

Reserve Team
About custom teams... how are their kits selected? by templates or can we import the kits? And can we make a custom team THEN export it for everyone?

If we can't here's something for SCTW to add.
 
J

Jon Watson

Guest
They are all Adidas approved kit templates. These cannot be exported or imported - so yes, that should go on the wish list.
 
K

koek7

Guest
Thank you, Jon for your quick replies. But does this mean that we can't change player's attributes (I mean: speed, passing, shooting, tackling etc)? Is that also one for the wishlist?

I'm looking forward to play your game.

[ 05-07-2001: Message edited by: koek7 ]
 
M

Matt Parkins

Guest
At present you cannot alter the player statistics for any team, custom or otherwise. There are no plans to introduce a statistics editor, but if you wish I could give details of the format of the database so you can hack the player statistics. At present, the player statistics for the custom teams are cloned from 4 of the licensed teams - I'll leave you to work out which custom team was cloned from which licensed team! :)
 
E

Edward_ Black

Guest
Thanks for the offer Matt, if you could give us the offsets and such via the use off say Hex edit, i think that the lads will have a whale of time editing and tweaking away at the player stats, and perhaps other things in there .. thanks mate ... Ned
 
M

Matt Parkins

Guest
Make a backup of your packfile (\fepc.ppc) before hacking it to pieces, otherwise you may need to reinstall the game to restore it.

There are 7 databases contained within the packfile, arranged according to language in alphabetical order. These can be found by doing an ASCII search in the packfile for "Seaman", for example (or whichever player you wish to edit). The first database is the Dutch, the second English, then French, German, Italian, Portuguese, and finally Spanish. So to edit the English database you'll need to edit the second occurance of Seaman (or whoever you plan to edit).

The name is fixed to 32-bytes long on disk, apart from that, a uint16 is an unsigned short, and a uint8 is an unsigned char... Have fun. MattP :cool:

char sName[32];
uint16 uiOldId; //Commentary Id
uint16 uiIdC; //now unused

//Values outside of the following ranges may crash the game on loading.

uint8 uiSkintone; //0..6
uint8 uiHaircolour; //0..6
uint8 uiHairstyle; //0..13
uint8 uiFacehair; //0..5

//Try making the players (a lot) smaller, to increase the relative size of the pitch.. Something fun to play with. May interfere with Logic/Mocap tho.

uint8 uiHeight; //in cm
uint8 uiWeight; //in kg

All the following values are converted from 1..99/1..35 to 1..9 within the frontend (the conversion is not a straight division).

uint8 uiHeading; //1..99
uint8 uiPace //1..99
uint8 uiShotrange; //1..35 yards
uint8 uiShooting; //1..99
uint8 uiDribbling; //1..99
uint8 uiAwareness; //1..99
uint8 uiStamina; //1..99
uint8 uiPassing; //1..99
uint8 uiTackling; //1..99
uint8 uiBallcontrol; //1..99
uint8 uiStrength; //1..99

Flags only contain the footedness of a player - 0x10 for the left, 0x20 for the right (allow for any combination)

uint8 flags; //Footedness
uint8 uiHeadModel; //Unused
uint8 uiPos[4]; //Positional info

Commentary flags. 0x1 Low sample exists, 0x2 High sample exists. Allow for any combination, but if either flag is set, the commentary id at the top must be set.

uint8 commentFlags;
uint8 uiShirtNumber; //1..99
uint8 PADDING[3];
 
C

chris arnfield

Guest
where are the editable files, i want to make some faces for this game, and also make the man utd kit better, i just need to know how i can open the files to edit
 


Top