Welcome to my Football Manager Blog, the main purpose of this blog is to provide updates on the status of my Football Manager Skins & Guides Website

If you have any questions or queries then I can generally be found in the Skinning Forum at the Official Sports Interactive Forums, though I'd ask you to open a new thread rather than sending me a message.

To help with navigation I have included indexes of my content for the last few versions of Football Manager in the tabs below.
Showing posts with label Football Manager Classic 2015. Show all posts
Showing posts with label Football Manager Classic 2015. Show all posts

Friday, 14 August 2015

FM2015 Skinning Guide Part 3: Changing the Text Colours


Welcome to the third part of my updated Skinning Guide for FM2015. 

Before reading this guide make sure you have read the previous parts of the guide as well as the extracting files guide, as this guide will assume you have followed those guides.

The previous parts of the guide talked you through creating a new skin and then changing the fonts and some of the font settings, this part of the guide will explain how to change the colours of most of the text in the game.

Before starting I advise you have the following folder locations open:
  •           Your 'Working' Folder Location from the previous guide (which is where you extracted the default game files to)
  •           The my_first_skin folder within your Saving Location.

Some housekeeping

Before we start we need to do some housekeeping.

First browse to the my_first_skin folder within your Saving Location and open the settings folder then open the 'my_first_skin settings.xml' and delete the contents of the file as the font settings located in that file aren't used with FM2015 and are just leftover from previous versions.

Once that is done you want to paste the following code into the file:

<?xml version="1.0" encoding="UTF-8"?>

<properties version="1.0">

</properties>

So the file should look like this:



Locating the default colours

Before you start changing the colours you first need to locate where the default text colours are stored, these are located in the xml files located within the various settings folders.

The first location you need to check are the folders for the parent skin to your skin, if you cannot remember which parent skin you set then open the skin_config.xml file located within the my_first_skin folder and locate the parent line that looks like this:

<flags id="parent" value="fm dark-widgets" />

In this case the parent skin we need to look in is 'fm dark-widgets'

So in your Working folder now browse to the skins\fm dark-widgets\settings folder.
In that folder will be an xml file called 'fm dark-widgets settings' this file contains the colour settings that are unique to this skin. If your skin has a different parent skin the settings file may be blank or not exist, if that is the case you will then have to look in the files for that skins parent skin.

However the colour settings are also stored elsewhere, if you go back to your Working Folder you will see a settings folder. This folder contains two more xml files that we are interested in 'colours' and 'fm colours'.

So we now have three files that control the skin colours and you will notice that some of the lines located in the 'colours' and 'fm colours' files are also present in the 'fm dark-widgets settings' file but with different values. This is because the game works on a file hierarchy.

The game will first look in in the 'fm dark-widgets settings' file for the colour name if it finds the value it will use the value from that file, if it doesn't find the value only then will it look in the 'colours' and 'fm colours' files. So when copying values over to edit always look in the settings file first and only move onto the colour files if you cannot find the colour name you are looking for.

If you want a shortcut then you can download one of the base skins and look inside the settings file for the base skin where I have already copied all the default colours for each skin into one file to save you having to locate them yourself.


Changing the text colours

Now that you have located the default values, to change the colours you just need to locate the relevant colour name and copy it into the settings file for your skin.

But before we get to that there is one other thing you need to consider. Football Manager 2015 made changes to how the skin graphics are coloured, instead of taking the colour of the graphic like in the past the skin graphic colours are now also set by these same three files, which means you have to be a bit careful when copying and changing the colours as some of the colour names will apply to skin graphics not the text and unfortunately the coding for both is exactly the same, though I'll cover the full details of how to edit the graphic colours in a later guide for now you just need to be aware that the code in these files doesn't just control the text colours.

The settings for the skin graphics are set at the top of the 'fm dark-widget settings' file, whilst the text settings start after this line of code (line #172):

<!-- misc "special" colours -->

As a simple example I am going to show you how to change the player attribute colours, the player attributes are controlled by these lines from the 'fm dark-widgets settings' file:

<!-- profile attribute colours -->
<colour name="low attribute" red="250" green="250" blue="250" alpha="140"/>
<colour name="normal attribute" red="250" green="250" blue="250" alpha="200"/>
<colour name="good attribute" red="159" green="220" blue="122" />
<colour name="excellent attribute" red="122" green="199" blue="75" />

Now locate those lines yourself and paste them into the 'my_first_skin settings' file. Now when pasting the code into the file you need to ensure the code is pasted between the two properties bits of code like below:


If you paste the code into the wrong place the game won't read the code and may flash up an error message when you reload the skin, if it does then just click ok on the message, fix the xml file, save the changes and then reload the skin.

Now that we have copied the relevant bits of code over we need to recolour the code, this is done in exactly the same way as shown in the previous guide, however instead of each colour getting its own line of code all three colours are on the same line.

To adjust the colour you need to change the values for each component. Valid values range from 0 to 255, where 255,255,255 is white, 0,0,0 is black, 255,0,0 is red, 0,255,0 is green etc…
The alpha value affects how transparent the colour is, 255 gives you a solid colour, where 0 makes the text completely transparent.

To change the text colour you need to know the RGB value of the colour you want, the easiest way to get this is from an image editing program.

So load up paint.net, and in the Colors panel at the bottom left click the more button to expand the panel and it will now show the RGB value of the selected colour and as you change the colour on the colour wheel you'll see the RGB values change. Alternatively there is a colour picker included within the game – just go to Preferences -> Interface -> Skin Colours, then click on one of the existing colours and a colour selector pops up where you can select a colour and get its RGB value.

As a simple exercise I am going to ask you to change the attribute colours to match the colours used for the player positions, so change the low attribute to match the poor position, the normal attribute to the awkward colour, good to unconvincing and excellent to competent (you should be able to locate the RGB values for the positions from the code located within the 'fm dark-widgets settings' file).

If done correctly your player attributes should now look something like this:


In the above screenshot you'll see that the text font and colour is still set from the previous guide, don't worry if you have undone those changes as they make no difference here.

To change the colour of other bits of text you just do the same, you just need to locate the relevant colour name for the text you want recoloured, copy it over and adjust the values.

The hardest thing is finding the correct colour name, whilst most are commented or named in a way that it makes it clear what they affect, some bits can be controlled by obscure values.

If you cannot find the relevant colour name then have a look on the forum as someone else may have already asked the same thing, if not then just open a thread and ask and hopefully someone will have the answer.

Also note that for some items you have to edit the xml for that panel to change the colour, however this will be covered in a later part of the guide.

You can also download a copy of this guide in several different formats for offline viewing:


DOWNLOAD PDF FORMAT GUIDE                                        DOWNLOAD DOCX FORMAT GUIDE

---
Redistribution Terms

You are free to post this content to your website provided:

1. It is not sold or behind a paywall.
2. You don't advertise it as being exclusive to your website.
3. My username and blog address are included: http://michaeltmurrayuk.blogspot.co.uk/

If linking to the guide please link to this page rather than the direct download links as the links may change with updates.

Wednesday, 25 February 2015

FM2015: Match In-Between Highlights Skins Updated


With the release of patch 15.3 for Football Manager 2015 I have updated the Match In Between Highlight Skins, this is only a minor update to include a fix for the goals column disappearing from the player ratings panel depending your resolution, other minor change is to include an updated client object browser file for the full mode versions.

For full details and download links for each versionfollow the below link:

 

FM2014 Match in Between Highlights Skins Download Page


---
Redistribution Terms
You are free to post this content to your website provided:
1. It is not sold or behind a paywall.
2. You don't advertise it as being exclusive to your website.
3. My username and blog address are included: http://michaeltmurrayuk.blogspot.co.uk/

Thursday, 25 December 2014

Football Manager 2015 - Replacement Stars


With the release of the Light Alternative Full Mode Skin for Football Manager 2015 I've found that the default Gold Stars don't really fit with the skin so I created some replacement stars, there are two packs available a pack of Blue Stars and a pack of Green Stars, both packs will work fine with either Full Mode skins or FMC skins.

Installation Instructions:

Extract the files from the zip file and place the extracted graphics folder inside the folder for the skin you are using, if you are using the Default Skins you will need to first download the Base Skin, add the new stars to that and then switch to the Base Skin in game.

Once you have added the stars you may need to turn off the skin cache and reload your skin from the Preferences -> Interface Menu in game to get your changes to load in game.






---
Redistribution Terms
You are free to post this content to your website provided:
1. It is not sold or behind a paywall.
2. You don't advertise it as being exclusive to your website.
3. My username and blog address are included: http://michaeltmurrayuk.blogspot.co.uk/

Wednesday, 24 December 2014

FM2015: Match In-Between Highlights Alternative Skins

Match In-Between Highlight Skins are now available for the new Alternative Skins introduced with patch 15.2, there are four new skins - a normal and wide version for each of the two new Alternative Skins; the Light Alternative Full Mode Skin and the Dark FMC2015 Skin.

Normal - Maximizes the size of the in-between match highlights panel positioned in the centre of the screen and leaving space for the match feed notifications down the right. (For the FMC version some of the match feed overlays the panel even in this mode as the feed takes up more room in FMC mode).
Wide - Maximizes the size of the in-between match highlights panel, but this time uses up the full width of the screen, this allows for more information to be shown at smaller screen resolutions, but the match feed items when displayed will cover parts of the top right side of the panel.

Outside of the match screen the skins are identical in appearance to the default FM15 skins.

Advanced instructions are also available to apply them to other skins and to enable alternative views.

Screenshots show a sample of available views and the panel at different resolutions, each version has the same views and panels enabled.  



FM2015 Match Highlights Light Skin Screenshots

FM2015 Match Highlights Light Wide Skin Screenshots


FMC2015 Match Highlights Dark Skin Screenshots

FMC2015 Match Highlights Dark Wide Skin Screenshots


For full details and download links for each version (including the original ones) follow the below link:

FM2014 Match in Between Highlights Skins Download Page


---
Redistribution Terms
You are free to post this content to your website provided:
1. It is not sold or behind a paywall.
2. You don't advertise it as being exclusive to your website.
3. My username and blog address are included: http://michaeltmurrayuk.blogspot.co.uk/

Saturday, 13 December 2014

FM2015: Bases Skins for New Alternative Skins Released


Base Skins for the new Alternative Skins included with patch 15.2 have now been released, there is a Base Skin 2015 which is based on the Full Mode Light Alternative Skin and an FMC Dark Base Skin that is based on the Alternative Dark FMC Skin.

Note that for the Light Alternative Skin the font settings on the Default Skin seem to be slightly different than those set on the Default Dark Skin, as I find the font settings of the Dark Skin easier to read I have altered the font settings for the Base Skin 2015, however if you want the orignal font settings back delete the fonts folder from the Base Skin. Also the Light Base Skin has fairly solid panels compared to the Dark Skin, if you want the panels to be more transparent like the Dark Skin then delete the contents of the graphics folder.

Below are a couple of screenshots, first one shows the Light Base Skin with the font settings I've included, second screenshot shows font settings from the Official Alternative Skin (what you will get if you delete the fonts folder) and the third screenshot shows what the skin will look like if you delete the graphics folder:


Full instructions on when and how to use the Base Skins can be found on the download page, please ensure you read the page in detail before downloading the Base Skins as it will save you problems in the future.

Also as there are still some issues with the Steam Workshop I have included all the files from the Alternative skins so you do not need to have them installed before using the Alternative Base Skins this year.

 
If you have any further questions on the Base Skins please ask any questions in the Skinning Hideout on the Official SIGames Forums.

---
Redistribution Terms
You are free to post this content to your website provided:
1. It is not sold or behind a paywall.
2. You don't advertise it as being exclusive to your website.
3. My username and blog address are included: http://michaeltmurrayuk.blogspot.co.uk/

Thursday, 11 December 2014

FM2015: Alternative Skins now released.



With the release of patch 15.2 two Alternative skins for Football Manager 2015 have been released a Light Full Mode skin called Football Manager 2015 Alternative Skin and a Dark FMC Mode skin called Football Manager Classic 2015 Alternative Dark Skin.

Each of these skins are obtained via the Steam Workshop, thankfully the instructions are a little simpler than last years instructions and again there are two methods to obtaining the skins:


How to Download the Alternative Skins directly through Football Manager 2015


1. With Football Manager 2015 loaded either from Main Menu Click on Downloads, or if you have a save game loaded select the Downloads option from the FM menu.
2. Wait for the Store to Finish Processing (this should be a lot faster than FM2014 as it is no longer scanning your graphics).
3. Click 'Steam Workshop' Tab in the top right hand corner.
4. Click 'Download Official add-ons directly from Steam' tab.
5. Steam Overlay will open to SI Games Workshop Page for FM2015.
6. Select the Skin you want either Football Manager 2015 Alternative Skin or Football Manager Classic 2015 Alternative Dark Skin.
7. Click the Green 'Subscribe' Button.
8. Close the Steam Overlay.
9. Cose the in-game Steam Store/Workshop screen.
10. Go to the Preferences Screen.
11. In the Skin Dropdown Menu your subscribed skin should now appear, select it and click confirm to load the skin. (NOTE: Which skin appears depends on which FM mode you last accessed if your last save was a full mode save then only full mode skins will be displayed, if you last played an FMC game then the listed skins will be FMC skins, to get to other mod skins first load a save game of that type then enter the Preferences Menu).


How to Download the Alternative Skins via Steam.

1. Browse to the Football Manager 2015 Workshop screen whilst logged into Steam.
2. Now locate either the Football Manager 2015 Alternative Skin or Football Manager Classic 2015 Alternative Dark Skin depending on which one you want.
3. Click the Green Subscribe Button.
4. Load up Football Manager 2015.
5. Go to the Preferences Screen.
6. In the Skin DropDown Menu your subscribed skin should now appear, select it and click confirm to load the skin. (NOTE: Which skin appears depends on which FM mode you last accessed if your last save was a full mode save then only full mode skins will be displayed, if you last played an FMC game then the listed skins will be FMC skins, to get to other mod skins first load a save game of that type then enter the Preferences Menu).


Troubleshooting.

- If the Skins don't appear in the dropdown menu and you are within a save game of the correct type from the Preferences -> Interface Screen untick 'Use caching to decrease page loading times' and tick 'Reload skin when confirming changes in Preferences' (you can set these options back once the skin is loaded), then click the 'Reload Skin' button in the bottom right and after the skin has reloaded the new skin should now display in the skin dropdown.

- If that doesn't work check to make sure the skins have actually downloaded, you can do this in several ways:

From Steam select the Library -> Downloads option, this should the workshop content if it is still downloading or is queued, if queued start the download otherwise wait for the download to complete.

If nothing is listed then browse to the skins folder inside your Saving Location (Documents\Sports Interactive\Football Manager 2015 by default) inside should be an fmf file for each skin you have downloaded through the workshop called something like Football Manager 2015 Alternatve_B8D38160-4066-4A2F-9040-21965995C4C9 or Football Manager Classic 2015 Dark_8EA8D9C0-FC6E-4C8F-AB68-ED570EDEA6FC.

If nothing is present then unsubcribe from the file(s) and try the other method to download the skins.

Wednesday, 10 December 2014

FM2015: How to Get Skins to Work With Patch 15.2


The newly released patch 15.2 for Football Manager 2015 has changed how skins work, if you are an enduser you can either wait for the skinner to update their skin or follow the below instructions to update the skin to work on patch 15.2.

Monday, 24 November 2014

FM2015 Guide: How To Edit the League Table



This is a simple guide that covers some of the changes made to the code that displays the league table in Football Manager 2015, the changes to the coding in FM2015 mean we can now actually change the columns that are displayed on the league table in different views, unfortantly the changes have made it a bit more difficult to resize the column widths.

FM2015 Guide: How to Add an Image to the Match Pitch


This is a simple guide to show you how to add images to the Match Pitch Screen in Football Manager 2015

Tuesday, 18 November 2014

FM2015: Match In-Between Highlights Skins

Like the last couple of versions the match screen we have in Football Manager 2015 is a hybrid TV-Classic view mode where again if there are no hightlights you are left on the pitch view instead of switching back to the last panel you were on, were we are left with a small pop-up giving us some information like the old TV-View widgets.

Thankfully this pop-up is editable, which is what these skins does they resize the pop-up and modifies the content of the panels to show the full panel details where possible.

As with Football Manager 2014 I have modified the panel to use the adaptive panels used elsewhere in the game this means the panel will resize itself depending on what resolution you are using (meaning no editing of the xml file just to get it working) and will also display extra panels if you have the space.

Again to make things easier I have made the mod into a skin which means there are a couple of different versions available depending what skin you are using and what you want:

There are two versions of the mod for each of the Default skins included with FM (Dark version of full FM15 mode and an FMC one for FMC2015 mode, a Light version will follow once the skin has been released):

Normal - Maximizes the size of the in-between match highlights panel positioned in the centre of the screen and leaving space for the match feed notifications down the right. (For the FMC version some of the match feed overlays the panel even in this mode as the feed takes up more room in FMC mode).

Wide - Maximizes the size of the in-between match highlights panel, but this time uses up the full width of the screen, this allows for more information to be shown at smaller screen resolutions, but the match feed items when displayed will cover parts of the top right side of the panel.

Outside of the match screen the skins are identical in appearance to the default FM15 skins.

Advanced instructions are also available to apply them to other skins and to enable alternative views.

Screenshots show a sample of available views and the panel at different resolutions, each version has the same views and panels enabled.  


FM2015 Match Highlights Dark Skin Screenshots




FM2015 Match Highlights Dark Skin Wide Version Screenshots





FMC2015 Match Highlights Skin Screenshots




FMC2015 Match Highlights Skin Wide Version Screenshots


For full details and download links for each version follow the below link:


FM2014 Match in Between Highlights Skins Download Page