Jump to content

Is there an easy way to remove the 3D Media backgrounds?


craiigman
 Share

Recommended Posts

I'm quite happy with the default skin, but the 3D media backgrounds (press conferences etc), well, I hate them strongly. Would much prefer just a grey background at this point. Can it be done easily?

edit: sorry should have posted to the small questions, mod please feel free to move/close

Edited by craiigman
Link to post
Share on other sites

25 minutes ago, craiigman said:

I'm quite happy with the default skin, but the 3D media backgrounds (press conferences etc), well, I hate them strongly. Would much prefer just a grey background at this point. Can it be done easily?

edit: sorry should have posted to the small questions, mod please feel free to move/close

take a look here, maybe you can reverts things or replace the pictures witha 1 something else to your likings

 

 

Link to post
Share on other sites

54 minutes ago, Tyburn said:

@craiigman Also check here:

 

Thank you, found your client object file, what changes do I need to make to just turn the background grey? Do I need to have an image file of just a grey BG to make it work, if so what do I need to change in the file and then where do I need to put the file.

Sorry it seems quite confusing.

Link to post
Share on other sites

The code points to images. Follow the path to where the image is placed and put in a simple grey background image in that folder. Create that folder in your skin if you don’t have it already. The string path bit of the code should be easy to spot. Call the image file whatever you want. Then in the code in the client object browser change the name of the file to the name of the grey background image you’ve just created. Go through all of the code under personal changes and change all of the instances of a named image file to your new grey background name.

Edit* As a side note. I can’t remember all the changes I’ve made to my client object browser. Some changes might not be what you’re after. I would suggest you look at your own client object browser and compare it to mine, and perhaps just add the code (in the correct place - important!) you need from mine to yours. Generally the code blocks you’re after, if you don’t want to see 3d backgrounds, will be the block in “personal changes” - or whatever I called it.

Edited by Tyburn
Link to post
Share on other sites

10 minutes ago, snowofman said:

Go for it, it might help others aswell

Ok, thanks. It's quite a long code, that's why I asked :)

So, what this does is basically replacing all the 3d generated environments by images.

Just paste into your client object browser.xml (don't forget to path to your own backgrounds image file - backgrounds/default). In my case I use the defaut one, located in my backgrounds folder, but you can use whatever you want.

 

<!-- PERSONAL BACKGROUND CHANGES - covers entire screen -->


    <!-- tunnel interview scene - pre match - covers entire screen - home -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="mpPh"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

    <!-- tunnel interview scene - pre match - covers entire screen - away -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="mpPa"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>
 
    <!-- tunnel interview scene - post match - covers entire screen - home -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="mPCh"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

    <!-- tunnel interview scene - post match - covers entire screen - away -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="mPCa"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

    <!-- pre match tactical meeting scene - home - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phTA" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- pre match team selection scene - home - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phtc" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- pre match tactical meeting scene - away - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="paTA" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- pre match team selection scene - away - covers entire screen -->
    
        <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phsn" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcC" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcN" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    
    
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcH" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    
          <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcK" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    
    
    
      <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcR" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcS" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
      <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phOI" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcP" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
            <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcT" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
        <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phtc" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="patc" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
     <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacT" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacP" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
        <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="paOI" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
            <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacS" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
                <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacR" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>


 <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacK" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
     <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacH" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
         <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacN" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
             <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacC" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>


             <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="pasn" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- pre match briefing scene - home - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phBR" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>


    <!-- pre match briefing scene - away - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="paBR" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- press conference - covers entire screen -->
    <widget class="picture" id="prCN" file="backgrounds/default" appearance="boxes/custom/home/paper">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PprC" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

  <!-- welcome to club - covers entire screen -->
  <widget class="picture" id="brEn" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="Twtc" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- board room scene - covers entire screen -->
  <widget class="picture" id="brEn" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="breq" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

 

  <!-- board room summary scene - covers entire screen -->
  <widget class="picture" id="brEn" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="brqS" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

 

    <!-- club vision meeting - covers entire screen -->
    <widget class="picture" id="CVEn" file="backgrounds/default" appearance="boxes/custom/home/paper">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="0" value="Cvim" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>    

  <!-- dressing room scene - covers entire screen - home team -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="htmt"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- dressing room scene - covers entire screen - away team -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="atmt"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- team news scene - covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="mptn" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- private chat scene - staff - covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="CoaC" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- private chat scene - player - covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="ConV" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- meeting summary- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="ConS" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- any manager meeting scene?- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="mEnv" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>
 
    <!-- any pre match briefing scene?- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="pMBR" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- any team meeting scene?- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="tmEN" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- any cup scene?- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="cdEn" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>


  <!-- staff meeting scene- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="PBAm" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- recruitment meeting scene- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="PrMD" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

    <!-- team meeting scene - home - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="TeMt" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- team meeting summary scene - home - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="TeMS" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- match squad numbers scene - home - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phsn" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>


    <!-- match squad numbers scene - away - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="pasn" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- PERSONAL CHANGES END -->

Edited by Danny_Pt
Link to post
Share on other sites

21 hours ago, TCSSkin said:

Few things to note, you can use the above method or you can remove this code

image.png.215e0507a9c5c81dd5bbba3c9e34d544.png

You can find the IDs in section meta data

So I would only need to remove that line of code instead of inserting of all that code above?

Edited by Danny_Pt
Link to post
Share on other sites

2 hours ago, Danny_Pt said:

So I would only need to remove that line of code instead of inserting of all that code above?

yeah, though the header stuff still shows

4 minutes ago, BlueScreen said:

Are you using Notepad ++? If so, can you tell me where can I get that skin? It looks really good

 will upload it when i get home maye

Link to post
Share on other sites

  • 1 month later...
Em 12/11/2023 em 13:30, Danny_Pt disse:

Ok, thanks. It's quite a long code, that's why I asked :)

So, what this does is basically replacing all the 3d generated environments by images.

Just paste into your client object browser.xml (don't forget to path to your own backgrounds image file - backgrounds/default). In my case I use the defaut one, located in my backgrounds folder, but you can use whatever you want.

 

<!-- PERSONAL BACKGROUND CHANGES - covers entire screen -->


    <!-- tunnel interview scene - pre match - covers entire screen - home -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="mpPh"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

    <!-- tunnel interview scene - pre match - covers entire screen - away -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="mpPa"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>
 
    <!-- tunnel interview scene - post match - covers entire screen - home -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="mPCh"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

    <!-- tunnel interview scene - post match - covers entire screen - away -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="mPCa"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

    <!-- pre match tactical meeting scene - home - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phTA" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- pre match team selection scene - home - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phtc" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- pre match tactical meeting scene - away - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="paTA" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- pre match team selection scene - away - covers entire screen -->
    
        <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phsn" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcC" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcN" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    
    
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcH" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    
          <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcK" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    
    
    
      <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcR" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcS" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
      <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phOI" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcP" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
            <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PhcT" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
        <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phtc" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="patc" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
     <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacT" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacP" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
        <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="paOI" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
            <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacS" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
                <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacR" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>


 <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacK" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
     <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacH" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
         <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacN" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>
    
    
             <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PacC" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>


             <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="pasn" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- pre match briefing scene - home - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phBR" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>


    <!-- pre match briefing scene - away - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="paBR" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- press conference - covers entire screen -->
    <widget class="picture" id="prCN" file="backgrounds/default" appearance="boxes/custom/home/paper">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="PprC" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

  <!-- welcome to club - covers entire screen -->
  <widget class="picture" id="brEn" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="Twtc" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- board room scene - covers entire screen -->
  <widget class="picture" id="brEn" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="breq" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

 

  <!-- board room summary scene - covers entire screen -->
  <widget class="picture" id="brEn" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="brqS" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

 

    <!-- club vision meeting - covers entire screen -->
    <widget class="picture" id="CVEn" file="backgrounds/default" appearance="boxes/custom/home/paper">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="0" value="Cvim" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>    

  <!-- dressing room scene - covers entire screen - home team -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="htmt"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- dressing room scene - covers entire screen - away team -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="atmt"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- team news scene - covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
    <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="sect" test_mode="0" value="mptn" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- private chat scene - staff - covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="CoaC" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- private chat scene - player - covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="ConV" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- meeting summary- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="ConS" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- any manager meeting scene?- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="mEnv" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>
 
    <!-- any pre match briefing scene?- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="pMBR" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- any team meeting scene?- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="tmEN" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- any cup scene?- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="cdEn" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>


  <!-- staff meeting scene- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="PBAm" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

  <!-- recruitment meeting scene- covers entire screen -->
  <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper">
     <attachment class="test_multiple_globals_attachment" default_value="false">
      <list id="get_properties">
        <record get_property="section" test_mode="equal" value="PrMD" skip_if_null="false"/>
      </list>
      <integer id="set_property" value="Shwn"/>
    </attachment>
  </widget>

    <!-- team meeting scene - home - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="TeMt" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- team meeting summary scene - home - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="TeMS" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- match squad numbers scene - home - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="phsn" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>


    <!-- match squad numbers scene - away - covers entire screen -->
    <widget class="picture" file="backgrounds/default" appearance="boxes/custom/home/paper" scale_picture="true" keep_aspect_ratio="false">
        <attachment class="test_multiple_globals_attachment" default_value="false">
            <list id="get_properties">
                <record get_property="section" test_mode="equal" value="pasn" skip_if_null="false"/>
            </list>
            <integer id="set_property" value="Shwn"/>
        </attachment>
    </widget>

    <!-- PERSONAL CHANGES END -->

 Thank you for this :)

Link to post
Share on other sites

  • 3 months later...

I wonder about that as well. Thanks for helping me get rid of these horrid 3D backgrounds, but instead of a black screen it would be fantastic to get the stadium backgrounds I use in my game. 

 

Also, is there a way remove the manager + dressing room on the main menu?

Edited by Ultras Will Never Die
Link to post
Share on other sites

3 hours ago, Ultras Will Never Die said:

Also, is there a way remove the manager + dressing room on the main menu?

I've done it using something like this

        <widget class="picture" file="PICTURE PATH" scale_picture="true" keep_aspect_ratio="true" >
        <layout class="stick_to_sides_attachment" alignment="all" inset="0" />
                <animation class="scale_animation" trigger_id="hidden" trigger_value="false" end_mode="hold_end" >
                <list id="storyboard">
                  <record id="stop" interval="0" value="0"/>
                  <record id="stop" interval="0.4" value="1"/>
                </list>
                </animation>
</widget>
 

Put it underneath the container holding the menu

Link to post
Share on other sites

Excellent, thank you. 

Any way I can add a code to the xml file to get rid of the 3D background for the cup draws btw? I'm only just getting back into it for the first time since FM17 and all this unnecessary stuff does nothing for me. 

Edited by Ultras Will Never Die
Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

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