piquenbaur

Member
Joined
Nov 3, 2012
Messages
97
Reaction score
0
Points
6
Basically, I've created a team (Manchester FC) and I've found a logo from the internet. How did I put it into my FM save? I've downloaded it as a png file and put it in my logos file under the club's user ID but still nothing shows up? Any help?
 
You need the config.xml file in that folder.

Make sure the normal logo is 180 x 180, and small logo 20 x 20.
 
As Kev said you need a config file. You could do it all in the one file, as long as the .png files are in the same folder:

<record>
<!-- dont preload anything in this folder -->
<boolean id="preload" value="false"/>

<!-- turn off auto mapping -->
<boolean id="amap" value="false"/>

<list id="maps">

<record from="iconimgname" to="graphics/pictures/club/clubid/icon"/>
<record from="normalimgname" to="graphics/pictures/club/clubid/logo"/>
<record from="largeimgname" to="graphics/pictures/club/clubid/logo/huge"/>

</list>
</record>

Where iconimgname ect. are the file names (without the .png extension), and clubid is your club ID number.
 
Top