The logo competition for the 2025 4chan Winter Cup is now taking submissions.
The deadline is January 6th, 23:59 UTC. Logos will be placed in this gallery to facilitate discussion. This will be followed by a polling period to determine which logo will be used.

Please send all submissions to Potatotron. You must supply a high-res PNG file (5000x5000 limit) and the original multi-layer source file.

Cloverleaf logo: .png .svg

Cloverball logo: .ai .png .svg

Pro Evolution Soccer 2017/Billboards

From Rigged Wiki
Revision as of 23:30, 10 April 2017 by Tomato (talk | contribs) (Created page with "{{Template:Pes2017 TOC}} :''This page details billboard mechanics in PES 2017. To view billboards see Billboards/Gallery.'' =Introduction= This page will try to explain...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
2017 4chanlogo.png
Pro Evolution Soccer 2017
Game
Rules
Info
Tools
Modding
This page details billboard mechanics in PES 2017. To view billboards see Billboards/Gallery.

Introduction

This page will try to explain the most important details regarding PES17 billboard mechanics. The first section will explain the build-up of an billboard folder and the different Bill Bodies. The second section will explain how the general config file is built up. The third section will explain the 90system billboards and other leftovers. The last section contains quick tutorials on how to create different billboard sets. All the billboard stuff can be found in (dt30.cpk)\common\bg\model\bg\bill. Below tools several templates for billboard sets can be downloaded.

Billboard folder

A normal billboard folder will be in \common\bg\model\bg\bill and have its own name. So an example /4ccc/ billboard set will be in \common\bg\model\bg\bill\4ccc. This folder will contain several files and folders. These will be explained below under their own heading.

bill_texlist.xml

This file will contain all the textures in the texture folder that will appear on the billboards. Open this file and add lines for all the textures in the texture folder. The standard pes bill_texlist.xml looks like this:

<?xml version="1.0" encoding="utf-8"?>
<bill>
  <texture type="bill" path="model/bg/bill/pes/texture/bill_face_knm_knm_00.dds" />
  <texture type="bill" path="model/bg/bill/pes/texture/bill_face_pes_pes_00.dds" />
  <texture type="bill" path="model/bg/bill/pes/texture/bill_face_knm_knm_01.dds" />
  <texture type="bill" path="model/bg/bill/pes/texture/bill_face_pes_pes_01.dds" />
</bill>

xx_df.xml, xx_dr.xml, xx_nf.xml, xx_nr.xml

These files contains the several settings regarding paths to certain files. The xx in the names refer to the name of the billboard folder, so in the case of 4ccc these files will be named 4ccc_df.xml, 4ccc_dr.xml, 4ccc_nf.xml and 4ccc_nr.xml.

The standard pes pes_nf.xml looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<bill>
	<bill path="model/bg/bill/billBody/bill_type_05/bill_nf.xml" />
	<systemad path="model/bg/bill/90systemAd/pes/systemAd_nf.xml" />
	<texlist path="model/bg/bill/pes/bill_texlist.xml"/>
	<animedata path="model/bg/bill/pes/bill_anime.json"/>
</bill>

bill path

This refers to what billboard models the set will use. Different types have different amount of billboards for each side and some are meant for digital (LED) billboards, some for video (movie) billboards and others for normal plate (scroll) billboards. Some billboard types are only meant for specific stadiums. Change the number to BillBody type you want to use. The game uses the following types of billboards:

# Type Amount of back bills Amount of front bills Amount of left bills Amount of right bills
01 Movie 20 8 12 12
02 LED 20 8 12 12
03 Scroll 20 8 12 12
05 LED 24 - 12 12
06 Scroll 24 - 12 12
07 Movie 44 - 22 22
08 LED 44 - 22 22
10 Movie 24 - 12 12
11 LED 24 12 12 12
13 Movie 20 - 14 14
14 LED 20 - 14 14
16 Movie 20 - 12 12
17 LED 20 - 12 12
19 Movie 18 - 12 12
20 LED 18 - 12 12
23 LED 22 - 14 14
25 Scroll 30 11 19 20
26 Scroll 29 - 21 21
28 LED 24 - 14 14
30 Scroll 26 - 11 11
31 Scroll 18 - 10 10
34 Scroll 20 - 11 11
38 Scroll 18 8 12 12
40 LED 20 - 12 12
41 Scroll 20 - 12 12
43 LED 22 - 10 10
47 Scroll 18 - 12 12
51 Scroll 20 - 12 12

systemad path

Location of the 90systemAd bills, the ones on the ground next to the goals. This will be discussed under Other. If you do not have nor want these things, delete this line.

texlist path

Location of the bill_texlist.xml.

animedata path

Location of the bill_anime.json.xml.

bill_anime.json

This files contains all the data to determine what billboards will appear, where they will appear, how long they will appear and in what order they will appear. Use the bill_anime.json in the template under Tools for 4cc billboards.

Example of a typical bill_anime.json file, in this case for a LED rotating billboard set.

This is an example from a rotating set:

{"animeList" : [0], "texList" : ["left_00", "2left_00", "3left_00"], "idleTime" : 15.0000 }, // 0

Parameters

["left_00", "2left_00", "3left_00"]: This is where you list your billboard files. In this case, left_00.dds, 2left_00.dds and 3left_00.dds are being called on. They will rotate in this sequence. Naturally a static billboard set would only call on a single file.

"idleTime" : 15.0000: The number indicates the length of time (in seconds) the game will wait before rotating to the next billboard in sequence.

0: This number indicates where the billboard slot is in the ground. Starting with 0, slots begin on the left of a given side of the pitch (left, right, back or front).

The billboards below "dir" : 0, are the billboards at the front, "dir" : 1, the back, "dir" : 2, the left and "dir" : 3, the right.

If you want individual static billboards in rotating sets, set "idleTime" in bill_anime.json to a very large number like 9999999999999.

texture (folder)

This folder will contain all billboards as .dds-textures. These are the same ones as listed in the bill_texlist.xml and bill_anime.json files. While the textures can be almost any size, PES will resize them correctly itself anyway, it is advised to use 512*64 DDS DXT1 No Alpha textures.

Config file

To have the game use your billboard set you will have to put it in the config.xml along with several parameters so the game knows when to use it. This file can be found in (dt30.cpk)\common\bg\model\bg\bill\config.

<condition stid="-1" compeid="-1" hometeamid="1" teamexclusion="0" language="-1" region="-1" title="-1" pattern="folder_name" />

Parameters

stid: Determines which stadium will use the set.
compeid: Determines which competition will use the set.
hometeamid: Determines which team will use the set if they play at home.
teamexclusion: Unknown, leave set to 0 for team-specific sets, -1 otherwise.
language: Determines which language version of the game the set will be used in.
region: Likely applies to a regional version of the game for localisation purposes. Leave it set to -1 to disable the parameter.
title: Determines whether the set is used in the PES (0) or Winning Eleven (1) version of the game. -1 disables the parameter.
pattern: The name of the set.

Examples

<condition stid="-1" compeid="-1" hometeamid="782" teamexclusion="0" language="-1" region="-1" title="-1" pattern="4ccc" />

Team with ID 782 will use the set named "4ccc" at home matches.

<condition stid="-1" compeid="2" hometeamid="-1" teamexclusion="-1" language="-1" region="-1" title="-1" pattern="general1" />

Set named "general1" will be used in competition with ID "2".

<condition stid="-1" compeid="-1" hometeamid="-1" teamexclusion="-1" language="-1" region="-1" title="0" pattern="general1" />

Set named "general1" is global and will be used everywhere in PES (unless a stadium, team or competition-specific set takes precedence).

Imporant

The higher the line an entry is in the config.xml, the higher the priority.

Other

90systemAd

These are billboards on the ground next to the goals. First of all make sure the line regarding 90systemAd is in the xx_df.xml, xx_dr.xml, xx_nf.xml or xx_nr.xml. If you're using the 4cc template don't forget to change the texture names in the systemAd.mtl file.

hit_billboard.hkx (important)

All billboards have a skeleton animation file. These go in \common\render\model\bg\hit\bill\<billboard set name>\hit_billboard.hkx.

Making Billboards

It's greatly recommended that you grab the template pack from Tools before proceeding. It contains ready-made files for all types and it's much easier to simply edit those files to your liking.

Also remember to change 4ccc to your own set's name in the following examples.

General Setup

  • Put your textures in the texture folder
  • Open bill_texlist.xml and add your textures to the list
  • Open 4ccc_nf.xml and 4ccc_df.xml and make sure both texlist and animedata point to the files in the same folder
  • Open config.xml in common\bg\model\bg\bill\config and add the 4ccc set as detailed in Config file

With that the general setup is done. Now you can further customize the billboards by selecting the display type.

Static default billboard

  • Open 4ccc_nf.xml and 4ccc_df.xml and make sure the bill_type_xx in bill path points to a scrolling-type set. Setting it to bill_type_06 is a safe bet
  • Open bill_anime.json and change the texlist for each billboard to contain the texture the board should show. For example, if you want the board to show wiki.dds, you should set it to "texList" : ["wiki"]
  • Still in bill_anime.json, set idleTime to 99999.0000 everywhere. This makes sure the billboard image doesn't change during the game

Static LED-backlit billboard

  • Open 4ccc_nf.xml and 4ccc_df.xml and make sure the bill_type_xx in bill path points to an LED-type set. Setting it to bill_type_28 is a safe bet
  • Open bill_anime.json and change the texlist for each billboard to contain the texture the board should show. For example, if you want the board to show wiki.dds, you should set it to "texList" : ["wiki"]
  • Still in bill_anime.json, set idleTime to 99999.0000 everywhere. This makes sure the billboard image doesn't change during the game

Scrolling default billboard

  • Open 4ccc_nf.xml and 4ccc_df.xml and make sure the bill_type_xx in bill path points to a scrolling-type set. Setting it to bill_type_06 is a safe bet
  • Open bill_anime.json and change the texlist for each billboard to contain the textures the board should show. For example, if you want the board to change between the wiki and twitter textures, you should set it to "texList" : ["wiki", "twitter"]
  • Still in bill_anime.json, change the idleTime for each billboard to be the time you want the game to wait before changing to the next texture, in seconds. So for a 15-second break between changes, set it to "idleTime" : 15.0000

Scrolling LED-backlit billboard

  • Open 4ccc_nf.xml and 4ccc_df.xml and make sure the bill_type_xx in bill path points to an LED-type set. Setting it to bill_type_28 is a safe bet
  • Open bill_anime.json and change the texlist for each billboard to contain the textures the board should show. For example, if you want the board to change between the wiki and twitter textures, you should set it to "texList" : ["wiki", "twitter"]
  • Still in bill_anime.json, change the idleTime for each billboard to be the time you want the game to wait before changing to the next texture, in seconds. So for a 15-second break between changes, set it to "idleTime" : 15.0000

Video billboards

Making the .usm file

  • Prepare the video you want to appear on the billboards and convert it to .avi
  • Grab the Scaleform encoder from Tools and run the program
  • In Scaleform, select your video from Input Name, untick Use Audio Track and in Video Settings set the bitrate and optionally the dimensions
  • Press Encode. The .usm file will appear in the same folder as the source file. Move this .usm file to the movie folder in your billboard folder
  • The video will loop automatically, so the source video can be kept short
  • From testing it seems that a 1024*64 video file is enough to fill 6 adboards on the bill_type_10 set. Every video file will be scaled to 1024*64 no matter the original resolution and will be read in the pattern shown in this file. Red is used for the first billboard, green for second, blue for third, black is ignored completely. Take this into note if you want the videoboards to be seamless

Setting up video billboards

  • Open 4ccc_nf.xml and 4ccc_df.xml and make sure the bill_type_xx in bill path points to a video-type set. Setting it to bill_type_10 is a safe bet
  • Still in 4ccc_nf.xml and 4ccc_df.xml, add the following line: <movie path="./movie/bill.usm"/>, where bill.usm is the name of your .usm file.

Notes and help

  • Although there are different billboard sizes possible, 512*64 will be used for the general sets and 1024*64 is recommended for the video sets.
  • When using the template, don't forget to rename every instance of 4ccc to your billboard set's name.

Tools