Team Squad View Panel Change?

Abstract

Member
Joined
Dec 18, 2008
Messages
88
Reaction score
0
Points
0
On FM2009 when I went to view my squad page, I had previously re-arrange the panels / added new ones i.e I would see the players salarys, total goals, assists and so on.

However for some reason they messed up and ive forgotten how and what I need to do to re-arrange / add the salarys etc again.

If someone could link me / post the whole list of "coding" so I can re-do this it'd be appreciated.

Thanks.
 
Depending on the skin you are using you need to edit team squad.xml which can be found in...

\Documents\Sports Interactive\Football Manager 2009\skins\[skin name]\panels\

If the file doesn't exist then download the attached one.


Once you open the file i recommend searching for (around line 177)

PHP:
<string id="name" value="Selection[COMMENT: button in view_menu on squad screens; choose to view club stats]"/>
<record id="view">
	<flags id="Ppkd"/> <!-- picked info -->
	<flags id="Ppsq"/> <!-- preferred squad number-->
	<flags id="Pnfo"/> <!-- player status/info -->
	<flags id="Pnam"/> <!-- person name -->
	<flags id="Ppos"/> <!-- position -->
	<flags id="Pmor"/> <!-- player morale -->
	<flags id="Pfrm"/> <!-- player form -->
	<flags id="Pcon"/> <!-- player condition -->
	<flags id="Poap"/> <!-- overall appearances -->
	<flags id="Pogl"/> <!-- overall goals -->
	<flags id="Poav"/> <!-- overall average rating -->
</record>

Then just change each flags id to the things you want.

Here's a little list I have threw together of the different things you can have (apart from the ones already above)...

PHP:
<flags id="Pcoo"/> <!-- transfer options -->
<flags id="Pctr"/> <!-- transfer status -->
<flags id="Pcls"/> <!-- loan status -->
<flags id="Pdva"/> <!-- value -->
<flags id="Pcww"/> <!-- weekly wage -->
<flags id="Pced"/> <!-- contract expiry -->
<flags id="Pbpc"/> <!-- best position -->
<flags id="Pcac"/> <!-- current ability -->
<flags id="Pppc"/> <!-- potential ability -->
<flags id="Ppec"/> <!-- personality -->
<flags id="Pscc"/> <!-- scout recommendation -->
 
No problem.
 
Top