Countries Badges/Crest Instead of Flag?

Abstract

Member
Joined
Dec 18, 2008
Messages
88
Reaction score
0
Points
0
35991420nr6.jpg


Can someone tell me what I need to do to have the countries logo/crest showing up instead of the flags as they look horrible. (I already have the badges showing up @ the very top in the scoreboard)

Thanks.
 
This is a bit of a guess but I think if you edit the config.xml file for the logos do the following....


Copy all the lines that look like....

PHP:
		<record from="132" to="graphics/pictures/nation/132/logo"/>
		<record from="133" to="graphics/pictures/nation/133/logo"/>
		<record from="134" to="graphics/pictures/nation/134/logo"/>
		<record from="135" to="graphics/pictures/nation/135/logo"/>
		<record from="136" to="graphics/pictures/nation/136/logo"/>
		<record from="137" to="graphics/pictures/nation/137/logo"/>
		<record from="138" to="graphics/pictures/nation/138/logo"/>
		<record from="139" to="graphics/pictures/nation/139/logo"/>
		<record from="14" to="graphics/pictures/nation/14/logo"/>
		<record from="140" to="graphics/pictures/nation/140/logo"/>
		<record from="141" to="graphics/pictures/nation/141/logo"/>

Paste them below but add /huge to the end. So it should look like....

PHP:
		<record from="26" to="graphics/pictures/nation/26/logo/huge"/>
		<record from="27" to="graphics/pictures/nation/27/logo/huge"/>
		<record from="28" to="graphics/pictures/nation/28/logo/huge"/>
		<record from="29" to="graphics/pictures/nation/29/logo/huge"/>
		<record from="30" to="graphics/pictures/nation/30/logo/huge"/>
		<record from="31" to="graphics/pictures/nation/31/logo/huge"/>
		<record from="32" to="graphics/pictures/nation/32/logo/huge"/>
		<record from="33" to="graphics/pictures/nation/33/logo/huge"/>
		<record from="34" to="graphics/pictures/nation/34/logo/huge"/>
		<record from="35" to="graphics/pictures/nation/35/logo/huge"/>
		<record from="359" to="graphics/pictures/nation/359/logo/huge"/>


I have attached a config file that has this already done for all the logos.
 
Top