WKTHFC
14 years ago
3 years ago
14
Hi Ive had one issue installing version 1.3. One of the video files named Adidas had special permission rights that prevented me from copying it over. Can you suggest a solution?
Spursboy
14 years ago
4 months ago
7
The video ads for my swedish club are all black so I was wondering if it's possible to copy some video ads created for another team and code them to my team? I have some .ivf-files like nike, carlsberg etc. I want to use, can somebody help me?
rabcp
16 years ago
3 months ago
1,632
Hi Ive had one issue installing version 1.3. One of the video files named Adidas had special permission rights that prevented me from copying it over. Can you suggest a solution?

Try right clicking the Adidas ad, properties and deselect read only

The video ads for my swedish club are all black so I was wondering if it's possible to copy some video ads created for another team and code them to my team? I have some .ivf-files like nike, carlsberg etc. I want to use, can somebody help me?

How to code Video Adboards


Open up the ads.xml file located My Documents/Sports Interactive/Football Manager 2018/ads

First of all you have to load the graphics into FM18 which is done by the following piece of code the near the top of the xml file

<!-- Hibernian ads, rabcp -->
<record id="2190" path="video_ads/scotland/clubs/macron" animated="true"/>
<record id="2191" path="pictures/ads/europe/clubs/scotland/spl/hibernian/marathonbet"/>
<record id="2192" path="pictures/ads/europe/clubs/scotland/spl/hibernian/skysports"/>
<record id="2193" path="pictures/ads/europe/clubs/scotland/spl/hibernian/espn"/>


What this code means

<record id="2191" - Assigns a unique id number to specific ad-board (you makes this number up but make sure it is not already in use elsewhere in the config)

path="video_ads/scotland/clubs/macron" animated="true"/> Location of a video adboard which has just been given a unique id number

path="pictures/ads/europe/clubs/scotland/spl/hibernian/marathonbet"/> - Location of a static adboard which has just been given a unique id number

The next bit of code determines where the previously assigned ad-boards will be displayed

<!-- Hibernian, rabcp -->
<list id="1575">
<integer value="2190"/>
<integer value="2191"/>
<integer value="2192"/>
<integer value="2193"/>
<integer value="2191"/>
<integer value="2192"/>
<integer value="2193"/>
</list>


What this code means

<!-- Hibernian, rabcp --> - Just identifies to whoever is reading the xml file what this piece of code is for competitions/clubs along with the author of the adboards.

<list id="17"> - Unique id of the competition/clubs the ad-boards are for

<integer value="2191"/> - Positions adboard number 2191 in to be displayed for games in the assigned competition/club.

No as Hibernian play in a ground under 30,000 static adboards will display automatically as below;
https://s26.postimg.cc/ppkjl6rex/no_video.png


To allow Hibernian to display Video ads the following piece of code needs added at the bottom of the xml file, this can also been done for competitons or international teams;
<!-- All Hibernian home matches have to use LED -->
<record id="1575" led_force_flag="true" concatenate_next="true"/>


This code then turns on video ads and gives the below result
https://s26.postimg.cc/qqksab8eh/video.png

Bandes
7 years ago
2 months ago
71
Premium
Hi, does that mean with the patch of them all the old ones from Doc Devil anymore?
Can you install it yourself?
Since he has made many for the lower leagues of the Bundesliga
rabcp
16 years ago
3 months ago
1,632
Hi, does that mean with the patch of them all the old ones from Doc Devil anymore?
Can you install it yourself?
Since he has made many for the lower leagues of the Bundesliga

You can only work one adboard patch at a time you would need to add Doc Devil’s Ads and then code them manually to the xml file to get them to work
Bandes
7 years ago
2 months ago
71
Premium
You can only work one adboard patch at a time you would need to add Doc Devil’s Ads and then code them manually to the xml file to get them to work

<!-- German 3club Stuttgarter Kickers ads -->
<record id="2810" path="pictures/ads/europe/germany/clubs/stutt kick/antenne1"/>
<record id="2811" path="pictures/ads/europe/germany/clubs/stutt kick/axelent"/>
<record id="2812" path="pictures/ads/europe/germany/clubs/stutt kick/commerzbank"/>
<record id="2813" path="pictures/ads/europe/germany/clubs/stutt kick/ensinger"/>
<record id="2814" path="pictures/ads/europe/germany/clubs/stutt kick/gazi"/>
<record id="2815" path="pictures/ads/europe/germany/clubs/stutt kick/generali"/>
<record id="2816" path="pictures/ads/europe/germany/clubs/stutt kick/kultur"/>
<record id="2817" path="pictures/ads/europe/germany/clubs/stutt kick/minol"/>
<record id="2818" path="pictures/ads/europe/germany/clubs/stutt kick/subaru"/>
<record id="2819" path="pictures/ads/europe/germany/clubs/stutt kick/subaru2"/>
<record id="2820" path="pictures/ads/europe/germany/clubs/stutt kick/uhlsport"/>
<record id="0000" path="pictures/ads/europe/germany/clubs/stutt kick/3liga"/>

<!-- German 3Liga Stuttgarter Kickers , Doc_Debil -->
<list id="954">
<integer value="2810"/>
<integer value="2811"/>
<integer value="2812"/>
<integer value="2813"/>
<integer value="2814"/>
<integer value="2815"/>
<integer value="2816"/>
<integer value="2817"/>
<integer value="2818"/>
<integer value="2819"/>
<integer value="2820"/>
<integer value="0000"/>
</list>

Is That right ? and the Graphics in the folder

rabcp
16 years ago
3 months ago
1,632
<!-- German 3club Stuttgarter Kickers ads -->
<record id="2810" path="pictures/ads/europe/germany/clubs/stutt kick/antenne1"/>
<record id="2811" path="pictures/ads/europe/germany/clubs/stutt kick/axelent"/>
<record id="2812" path="pictures/ads/europe/germany/clubs/stutt kick/commerzbank"/>
<record id="2813" path="pictures/ads/europe/germany/clubs/stutt kick/ensinger"/>
<record id="2814" path="pictures/ads/europe/germany/clubs/stutt kick/gazi"/>
<record id="2815" path="pictures/ads/europe/germany/clubs/stutt kick/generali"/>
<record id="2816" path="pictures/ads/europe/germany/clubs/stutt kick/kultur"/>
<record id="2817" path="pictures/ads/europe/germany/clubs/stutt kick/minol"/>
<record id="2818" path="pictures/ads/europe/germany/clubs/stutt kick/subaru"/>
<record id="2819" path="pictures/ads/europe/germany/clubs/stutt kick/subaru2"/>
<record id="2820" path="pictures/ads/europe/germany/clubs/stutt kick/uhlsport"/>
<record id="0000" path="pictures/ads/europe/germany/clubs/stutt kick/3liga"/>

<!-- German 3Liga Stuttgarter Kickers , Doc_Debil -->
<list id="954">
<integer value="2810"/>
<integer value="2811"/>
<integer value="2812"/>
<integer value="2813"/>
<integer value="2814"/>
<integer value="2815"/>
<integer value="2816"/>
<integer value="2817"/>
<integer value="2818"/>
<integer value="2819"/>
<integer value="2820"/>
<integer value="0000"/>
</list>

Is That right ? and the Graphics in the folder


That all looks correct yes
andtho2001
6 years ago
3 hours ago
1,230
very nice but wehere are all the leagues teams cups in the link cant find many..
rabcp
16 years ago
3 months ago
1,632
https://s26.postimg.cc/6akkj13u1/bordeaux.png

https://s26.postimg.cc/sz9rimg2t/20180503231804_1.jpg https://s26.postimg.cc/wivp8evn9/20180503231922_1.jpg https://s26.postimg.cc/eg2mh77id/20180503231945_1.jpg https://s26.postimg.cc/5l1s6oqfp/20180503231829_1.jpg

W.I.P
French Ligue One
Bordeaux, Lille, Lyon, Nice, Marseille, Monaco, Paris Saint-Germian & Saint-Etienne

Scottish League One
Airdrieonians, Albion Rovers, Alloa Athletic, Arbroath, Ayr United, East Fife, Forfar Athletic, Raith Rovers, Stranraer & Queen's Park

Spanish La Liga
Atletico Madrid, Athletic Bilbao, Barcelona, Real Sociedad, Real Madrid, Sevilla, Valencia & Villarreal
MoneyGFX
12 years ago
1 week ago
269
Premium
Weird request but could someone give me a guide of how to get these to work on fm17?

I know the stadium models are different but I mainly just want to get the video ads working normally as I know the file structure is different from 17 to 18.

If anybody could help me it would be most appreciated!

Thanks in advance!
rabcp
16 years ago
3 months ago
1,632
Weird request but could someone give me a guide of how to get these to work on fm17?

I know the stadium models are different but I mainly just want to get the video ads working normally as I know the file structure is different from 17 to 18.

If anybody could help me it would be most appreciated!

Thanks in advance!


I’m at work right now so can’t 100% confirm but from what I remember you just need to rename the “simatchviewer_uncompressed” folder to “sigfx” to get the video adboards to work for FM17
MoneyGFX
12 years ago
1 week ago
269
Premium
I’m at work right now so can’t 100% confirm but from what I remember you just need to rename the “simatchviewer_uncompressed” folder to “sigfx” to get the video adboards to work for FM17


I’ll try this now, thanks for your help mate!
MoneyGFX
12 years ago
1 week ago
269
Premium
I’m at work right now so can’t 100% confirm but from what I remember you just need to rename the “simatchviewer_uncompressed” folder to “sigfx” to get the video adboards to work for FM17


Just done this and it’s working perfectly!

Thanks for your help mate!
MoneyGFX
12 years ago
1 week ago
269
Premium
does anybody know why this adboard would be repeating?(same adboard next to each other)

https://sortitoutsi.net/uploads/mirrored_images/Q4wCepGTFTzxVMdB9v9x6j9knIBS7iiF8wkECazd.jpg

<!-- Borehamwood ads -->
<record id="9501" path="pictures/ads/europe/england/clubs/borehamwood/bapp"/>
<record id="9502" path="pictures/ads/europe/england/generic/ginsters1"/>
<record id="9503" path="pictures/ads/generic/puma ff"/>
<record id="9504" path="pictures/ads/generic/carabao"/>
<record id="9505" path="pictures/ads/europe/england/generic/pukka"/>
<record id="9506" path="pictures/ads/europe/england/generic/skybet black"/>
<record id="9507" path="pictures/ads/europe/england/generic/tool"/>
<record id="9508" path="pictures/ads/europe/england/generic/wiser"/>
<record id="9509" path="pictures/ads/generic/bet365"/>
<record id="9510" path="pictures/ads/europe/england/clubs/borehamwood/barter"/>
<record id="9511" path="pictures/ads/europe/england/clubs/borehamwood/palmer"/>
<record id="9512" path="pictures/ads/europe/england/generic/wickes"/>
<record id="9513" path="pictures/ads/europe/england/generic/trade"/>
<record id="9514" path="pictures/ads/europe/england/clubs/borehamwood/burrows"/>

<!-- Borehamwood, -->
<list id="109212">
<integer value="9501"/>
<integer value="9502"/>
<integer value="9503"/>
<integer value="9503"/>
<integer value="9504"/>
<integer value="9505"/>
<integer value="9506"/>
<integer value="9507"/>
<integer value="9508"/>
<integer value="9509"/>
<integer value="9510"/>
<integer value="9511"/>
<integer value="9512"/>
<integer value="9513"/>
<integer value="9514"/>
</list>

am i doing something wrong? Help would be much appreciated.
rabcp
16 years ago
3 months ago
1,632
does anybody know why this adboard would be repeating?(same adboard next to each other)

https://sortitoutsi.net/uploads/mirrored_images/Q4wCepGTFTzxVMdB9v9x6j9knIBS7iiF8wkECazd.jpg

<!-- Borehamwood, -->
<list id="109212">
<integer value="9501"/>
<integer value="9502"/>
<integer value="9503"/>
<integer value="9503"/>

<integer value="9504"/>
<integer value="9505"/>
<integer value="9506"/>
<integer value="9507"/>
<integer value="9508"/>
<integer value="9509"/>
<integer value="9510"/>
<integer value="9511"/>
<integer value="9512"/>
<integer value="9513"/>
<integer value="9514"/>
</list>

am i doing something wrong? Help would be much appreciated.


You’ve duplicated adboard “9503”
MoneyGFX
12 years ago
1 week ago
269
Premium
You’ve duplicated adboard “9503”


Facepalm* cheers pal
rabcp
16 years ago
3 months ago
1,632
https://s26.postimg.cc/u4yndqnnt/lyon.png

https://s26.postimg.cc/4yxp6wu39/20180510003800_1.jpg https://s26.postimg.cc/9kttf9v1x/20180510004341_1.jpg https://s26.postimg.cc/hdkh78tb9/20180510004420_1.jpg https://s26.postimg.cc/tffv1dfed/20180510004436_1.jpg

W.I.P
French Ligue One
Bordeaux, Lille, Lyon, Nice, Marseille, Monaco, Paris Saint-Germian & Saint-Etienne

Scottish League One
Airdrieonians, Albion Rovers, Alloa Athletic, Arbroath, Ayr United, East Fife, Forfar Athletic, Raith Rovers, Stranraer & Queen's Park

Spanish La Liga
Atletico Madrid, Athletic Bilbao, Barcelona, Real Sociedad, Real Madrid, Sevilla, Valencia & Villarreal
rabcp
16 years ago
3 months ago
1,632
https://s26.postimg.cc/46vyaag09/Airdrie.png

W.I.P
French Ligue One
Bordeaux, Lille, Lyon, Nice, Marseille, Monaco, Paris Saint-Germian & Saint-Etienne

Scottish League One
Airdrieonians, Albion Rovers, Alloa Athletic, Arbroath, Ayr United, East Fife, Forfar Athletic, Raith Rovers, Stranraer & Queen's Park

Spanish La Liga
Atletico Madrid, Athletic Bilbao, Barcelona, Real Sociedad, Real Madrid, Sevilla, Valencia & Villarreal
rabcp
16 years ago
3 months ago
1,632
https://s26.postimg.cc/jo12vgvnd/albion_rovers.png

W.I.P
French Ligue One
Bordeaux, Lille, Lyon, Nice, Marseille, Monaco, Paris Saint-Germian & Saint-Etienne

Scottish League One
Airdrieonians, Albion Rovers, Alloa Athletic, Arbroath, Ayr United, East Fife, Forfar Athletic, Raith Rovers, Stranraer & Queen's Park

Spanish La Liga
Atletico Madrid, Athletic Bilbao, Barcelona, Real Sociedad, Real Madrid, Sevilla, Valencia & Villarreal
rabcp
16 years ago
3 months ago
1,632
https://s26.postimg.cc/w26eff6vt/alloa.png

W.I.P
French Ligue One
Bordeaux, Lille, Lyon, Nice, Marseille, Monaco, Paris Saint-Germian & Saint-Etienne

Scottish League One
Airdrieonians, Albion Rovers, Alloa Athletic, Arbroath, Ayr United, East Fife, Forfar Athletic, Raith Rovers, Stranraer & Queen's Park

Spanish La Liga
Atletico Madrid, Athletic Bilbao, Barcelona, Real Sociedad, Real Madrid, Sevilla, Valencia & Villarreal
rabcp
16 years ago
3 months ago
1,632
https://s26.postimg.cc/vkkfqsgk9/arbroath.png

W.I.P
French Ligue One
Bordeaux, Lille, Lyon, Nice, Marseille, Monaco, Paris Saint-Germian & Saint-Etienne

Scottish League One
Airdrieonians, Albion Rovers, Alloa Athletic, Arbroath, Ayr United, East Fife, Forfar Athletic, Raith Rovers, Stranraer & Queen's Park

Spanish La Liga
Atletico Madrid, Athletic Bilbao, Barcelona, Real Sociedad, Real Madrid, Sevilla, Valencia & Villarreal
tv_capper
16 years ago
1 hour ago
13,287
Updated boards:
Morecambe

https://thumbs2.imgbox.com/47/20/5CPPobkc_t.png https://thumbs2.imgbox.com/5e/ce/RMXNuFf9_t.png https://thumbs2.imgbox.com/d9/31/g9dFADTh_t.png https://thumbs2.imgbox.com/95/36/RBXxPVpJ_t.png https://thumbs2.imgbox.com/1d/52/r0Z4LaOf_t.png https://thumbs2.imgbox.com/6b/fd/WuTykRWh_t.png https://thumbs2.imgbox.com/0d/3a/Y16H0B8e_t.png https://thumbs2.imgbox.com/ea/b4/hccaYpzI_t.png https://thumbs2.imgbox.com/db/9e/0W9guW90_t.png https://thumbs2.imgbox.com/c1/f1/cOf5gTWM_t.png https://thumbs2.imgbox.com/36/62/RZazHMBs_t.png https://thumbs2.imgbox.com/ec/b7/Dkq1dfdT_t.png https://thumbs2.imgbox.com/34/85/JkITGNBI_t.png

English League 2: Cheltenham, Chesterfield, Barnet
Morecambe, Forest Green, Port Vale, Lincoln, Yeovil, Stevenage, Grimsby Town, Coventry, Luton Town, Notts County, Accrington Stanley, Wycombe Wanderers, Mansfield, Exeter City, Colchester Utd, Swindon, Newport County, Cambridge Utd, Carlisle[/center]
rabcp
16 years ago
3 months ago
1,632
https://s26.postimg.cc/nbruynbu1/ayr_united.png

W.I.P
French Ligue One
Bordeaux, Lille, Lyon, Nice, Marseille, Monaco, Paris Saint-Germian & Saint-Etienne

Scottish League One
Airdrieonians, Albion Rovers, Alloa Athletic, Arbroath, Ayr United, East Fife, Forfar Athletic, Raith Rovers, Stranraer & Queen's Park

Spanish La Liga
Atletico Madrid, Athletic Bilbao, Barcelona, Real Sociedad, Real Madrid, Sevilla, Valencia & Villarreal
dan123456car
6 years ago
4 years ago
1
Quick question when downloading all the ad board files and putting them in game. do i paste every update into the original file or how does it work? sorry but any help ill be greatly appreciated
rabcp
16 years ago
3 months ago
1,632
Quick question when downloading all the ad board files and putting them in game. do i paste every update into the original file or how does it work? sorry but any help ill be greatly appreciated

Just install them in order following the instructions in the read me file
rabcp
16 years ago
3 months ago
1,632
https://s26.postimg.cc/cv9huk4s9/Saintetienne.png

https://s26.postimg.cc/nuup65nhh/20180516235707_1.jpg https://s26.postimg.cc/r1p8pt2sl/20180516235949_1.jpg https://s26.postimg.cc/ijfslggud/20180517000110_1.jpg https://s26.postimg.cc/dksa6xkr9/20180517000151_1.jpg

W.I.P
French Ligue One
Bordeaux, Lille, Lyon, Nice, Marseille, Monaco, Paris Saint-Germian & Saint-Etienne

Scottish League One
Airdrieonians, Albion Rovers, Alloa Athletic, Arbroath, Ayr United, East Fife, Forfar Athletic, Raith Rovers, Stranraer & Queen's Park

Spanish La Liga
Atletico Madrid, Athletic Bilbao, Barcelona, Real Sociedad, Real Madrid, Sevilla, Valencia & Villarreal
Vicious One
16 years ago
1 week ago
99
Great work! Looking forward to the next patch. Any plans of doing the major clubs in the Serie A? Would be great!
tv_capper
16 years ago
1 hour ago
13,287
Updated boards:
Macclesfield (National League Winners)

https://thumbs2.imgbox.com/2d/a3/YlMaDCBP_t.png https://thumbs2.imgbox.com/25/8b/rlNnck0L_t.png https://thumbs2.imgbox.com/2c/33/2QbLIFMp_t.png https://thumbs2.imgbox.com/b2/57/c8wmBJNd_t.png https://thumbs2.imgbox.com/7e/8c/haQVlj5x_t.png https://thumbs2.imgbox.com/ed/91/sUrSrVr0_t.png https://thumbs2.imgbox.com/78/7e/uwvWluW5_t.png https://thumbs2.imgbox.com/1d/06/6hoJw9aT_t.png https://thumbs2.imgbox.com/ca/4f/qjS7b9C4_t.png https://thumbs2.imgbox.com/1f/db/SMWEKeQs_t.png https://thumbs2.imgbox.com/61/9b/2DHmYuBX_t.png https://thumbs2.imgbox.com/a5/d2/Ci0LXzgy_t.png

English League 2: Cheltenham, Chesterfield, Barnet
Macclesfield, Morecambe, Forest Green, Port Vale, Lincoln, Yeovil, Stevenage, Grimsby Town, Coventry, Luton Town, Notts County, Accrington Stanley, Wycombe Wanderers, Mansfield, Exeter City, Colchester Utd, Swindon, Newport County, Cambridge Utd, Carlisle
rabcp
16 years ago
3 months ago
1,632
Great work! Looking forward to the next patch. Any plans of doing the major clubs in the Serie A? Would be great!

I'm planning on doing some Italian club ads in the future but not sure when I'll get round to them
rabcp
16 years ago
3 months ago
1,632
https://s26.postimg.cc/6ku0j5syx/east_fife.png

W.I.P
French Ligue One
Bordeaux, Lille, Lyon, Nice, Marseille, Monaco, Paris Saint-Germian & Saint-Etienne

Scottish League One
Airdrieonians, Albion Rovers, Alloa Athletic, Arbroath, Ayr United, East Fife, Forfar Athletic, Raith Rovers, Stranraer & Queen's Park

Spanish La Liga
Atletico Madrid, Athletic Bilbao, Barcelona, Real Sociedad, Real Madrid, Sevilla, Valencia & Villarreal

You'll need to Login to comment