I found in the database directory the file named names.dbf. In this
file are inserted the first and last names of every rookies that the game will generate randomly at the end of the season, after the
finals. This is what I experienced customizing it:
DELETED 0
ID automatic number
ISFIRTST -1 if the name inserted is a first name, 0 if it's not
ISLAST -1 if the name inserted is a last name, 0 if it's not
so if I insert a name, isfirst will be -1 and iflast 0, if
I insert a surname, isfirst will be 0 and islast -1
ISWHITE it indicates if the player will be a white player:
0 for never, 3 for sometimes, 2 often, 1 always
ISEURO it indicates if the player will be an european player:
0 for never, 3 for sometimes, 2 often, 1 always
ISBLACK it indicates if the player will be a black player:
0 for never, 3 for sometimes, 2 often, 1 always
ISAFRICA it indicates if the player will be an african player:
0 for never, 3 for sometimes, 2 often, 1 always
I tried some and now it works fine, the game generates quite right
white, euro, black and african players.
Example for a white italian/european player, this is if i want more
italian player than other european or black or african:
0 -1 0 1 1 0 0 Massimo
0 0 -1 1 1 0 0 Bulleri
Example for a white european player:
0 -1 0 2 2 0 0 Toni
0 0 -1 2 2 0 0 Kukoc
Example for a general black player:
0 -1 0 0 0 2 0 Michael
0 0 -1 0 0 2 0 Jordan
Anyway Jordan could also be a name, so we can do this:
0 -1 -1 0 0 2 0 Jordan
Example for a general black african player:
0 -1 0 0 0 2 2 Dikembe
0 0 -1 0 0 2 2 Babatunde
I choose "2" for isblack and isafrica to let the game generates more
european players than african (this is for the Italian Mod) if I want more african than european, black or white players, I'll put "1" on isafrica and "isblack".
Anyway I edited a copy of the original file, if I edit a copy deleting all entries and add new first and last names, the game crashes when it generates players. I'll check for more realism for the name generated.
If you have more infos about this file, you're welcome
Sorry for my english