Jump to content

Adding extra columns to tactics screen


jptykes

Recommended Posts

Is it possible to add extra columns to the match tactics screen? For example, in the image below I'd find it handy to add a Composure column to the Penalty view. Likewise a Crossing column in Corners and a few others in the different views.

6p57ww.jpg

I'm guessing it can be done via xml but how and where?

Link to post
Share on other sites

you need to edit the "tactic person list.xml" file

this is the section that will need editing

             <record id="atpt">
               <string id="text" value="Penalty Taking"/>
               <record id="view">
                 <flags id="Ppkd"/>
                 <!-- picked info -->
                 <flags id="Pnfo"/>
                 <!-- status info -->
                 <flags id="Pnam"/>
                 <!-- person name -->
                 <flags id="Ppen"/>
                 <!-- penalty taking -->
               </record>
             </record>

not sure what the code is for composure attribute, hopefully someone will come along and say it

Link to post
Share on other sites

              <record id="atcr">
               <string id="text" value="Corners"/>
               <record id="view">
                 <flags id="Ppkd"/>
                 <!-- picked info -->
                 <flags id="Pnfo"/>
                 <!-- status info -->
                 <flags id="Pnam"/>
                 <!-- person name -->
                 <flags id="Pcor"/>
                 <!-- (t) corner taking -->
                 <flags id="Pcre"/> 
                 <!-- (t) creativity -->
                 <flags id="Pfla"/> 
                 <!-- (t) flair -->
                 <flags id="Ptec"/> 
                 <!-- (t) technique -->
               </record>
             </record>

             <record id="atsp">
               <string id="text" value="Free Kicks"/>
               <record id="view">
                 <flags id="Ppkd"/>
                 <!-- picked info -->
                 <flags id="Pnfo"/>
                 <!-- status info -->
                 <flags id="Pnam"/>
                 <!-- person name -->
                 <flags id="Pfrk"/>
                 <!-- free kicks -->
                 <flags id="Plsh"/>
                 <!-- long shots -->
                 <flags id="Pcre"/> 
                 <!-- (t) creativity -->
                 <flags id="Pfla"/> 
                 <!-- (t) flair -->
                 <flags id="Ptec"/> 
                 <!-- (t) technique -->
               </record>
             </record>

             <record id="atin">
               <string id="text" value="Influence"/>
               <record id="view">
                 <flags id="Ppkd"/>
                 <!-- picked info -->
                 <flags id="Pnfo"/>
                 <!-- status info -->
                 <flags id="Pnam"/>
                 <!-- person name -->
                 <flags id="Pinf"/>
                 <!-- influence -->
                 <flags id="Pdec"/> 
                 <!-- (t) decisions -->
                 <flags id="Pdet"/> 
                 <!-- (t) determination -->
                 <flags id="Pinf"/> 
                 <!-- (t) influence -->
                 <flags id="Ptwr"/> 
                 <!-- (t) team work -->
                 <flags id="Pwkr"/> 
                 <!-- (t) work rate -->
               </record>
             </record>

             <record id="atlt">
               <string id="text" value="Long Throws"/>
               <record id="view">
                 <flags id="Ppkd"/>
                 <!-- picked info -->
                 <flags id="Pnfo"/>
                 <!-- status info -->
                 <flags id="Pnam"/>
                 <!-- person name -->
                 <flags id="Plth"/>
                 <!-- long throws -->
               </record>
             </record>

             <record id="atpt">
               <string id="text" value="Penalty Taking"/>
               <record id="view">
                 <flags id="Ppkd"/>
                 <!-- picked info -->
                 <flags id="Pnfo"/>
                 <!-- status info -->
                 <flags id="Pnam"/>
                 <!-- person name -->
                 <flags id="Ppen"/>
                 <!-- penalty taking -->
                 <flags id="Pcmp"/> 
                 <!-- (t) composure -->
                 <flags id="Pdec"/> 
                 <!-- (t) decisions -->
                 <flags id="Pfla"/> 
                 <!-- (t) flair -->
                 <flags id="Ptec"/> 
                 <!-- (t) technique -->
               </record>
             </record>

Link to post
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...