Everything about Modding TE2013, from new courts to the modifications of the player & tournament bases (and including all the bugs they may be creating !

)
Forum rules
Speak English in 1st page of topics, and don't hijack topics, troll, use profanities nor insults
by manuelll » 21 Jun 2011, 14:45
how can i change the position of the scoreboard ?
i want to move it a little more left
plaese help
-

manuelll
- crazy of the little yellow ball

-
- Messages: 60
- Gaming Since: 24 May 2011, 14:29
by manuelll » 22 Jun 2011, 20:39
help somebody
-

manuelll
- crazy of the little yellow ball

-
- Messages: 60
- Gaming Since: 24 May 2011, 14:29
by haas192 » 22 Jun 2011, 20:45
manuelll wrote:help somebody
Hudboardscoresub and hudbordscore files are the good files for it, but I don't know the datas in it.
2012:(Singles) Rank: 140.
ATP 250: -
-R32: Montpellier
-R16: Buenos Aires
ATP 1000:
-R128: Miami
-R64: Indian Wells
-

haas192
- crazy of the little yellow ball

-
- Messages: 382
- Gaming Since: 21 Feb 2009, 21:17
- Location: Budapest, Hungary
by kersou » 22 Jun 2011, 20:54
Hello,
You have to modify the file
hudabove.menu under Menu directory.
The position of the scoreboard is set with ScoreX and ScoreY.
Replace:
- Code: Select all
def ScoreX 600
by (for example):
- Code: Select all
def ScoreX 580
Coordinates are scaled from 640x480.
Take a look at menu.doc under the same directory
Kersou
-
kersou
- crazy of the little yellow ball

-
- Messages: 613
- Gaming Since: 23 Jan 2011, 00:47
- Location: France
by andy09 » 22 Jun 2011, 21:53
kersou wrote:Hello,
You have to modify the file
hudabove.menu under Menu directory.
The position of the scoreboard is set with ScoreX and ScoreY.
Replace:
- Code: Select all
def ScoreX 600
by (for example):
- Code: Select all
def ScoreX 580
Coordinates are scaled from 640x480.
Take a look at menu.doc under the same directory
Thank you!

you can also change the font color? Bone black, blue, orange, etc..
-
andy09
- crazy of the little yellow ball

-
- Messages: 302
- Gaming Since: 05 Mar 2010, 19:20
- Location: Argentina
by torto14 » 22 Jun 2011, 22:52
Yes, if you look at the very top of the hudabove.menu you can define the colours of fonts.
-
torto14
- crazy of the little yellow ball

-
- Messages: 1584
- Gaming Since: 24 Jun 2010, 00:22
by manuelll » 23 Jun 2011, 00:35
thank you kersou !!!
can i change also the size of the scoreboard ?
-

manuelll
- crazy of the little yellow ball

-
- Messages: 60
- Gaming Since: 24 May 2011, 14:29
by andy09 » 23 Jun 2011, 04:09
torto14 wrote:Yes, if you look at the very top of the hudabove.menu you can define the colours of fonts.
but as we do?
-
andy09
- crazy of the little yellow ball

-
- Messages: 302
- Gaming Since: 05 Mar 2010, 19:20
- Location: Argentina
by kersou » 23 Jun 2011, 08:34
manuelll wrote:thank you kersou !!!
can i change also the size of the scoreboard ?
Yes you can (I succeeded!) but it's more complicated.
You need to adapt more data in the same file : all positions and sizes of scoreboard items.
It takes time to explain : I try later
Kersou
-
kersou
- crazy of the little yellow ball

-
- Messages: 613
- Gaming Since: 23 Jan 2011, 00:47
- Location: France
by kersou » 23 Jun 2011, 08:46
andy09 wrote:but as we do?
The font is defined with this following type of lines:
- Code: Select all
Font Default HugeChars 9 12 [b]0xFFFFFFFF [/b]0 Circle Center Center Shadow LH1.15
The color (and transparancy) is given with an hexadecimal code.
0xFFFFFFFF stands for white colour (because of the last 6 F)
0xFFFF0000 is red i think
Look at menu.doc and web
For example:
Look at
http://www.dsi.univ-paris5.fr/cocoul3t.html
Kersou
-
kersou
- crazy of the little yellow ball

-
- Messages: 613
- Gaming Since: 23 Jan 2011, 00:47
- Location: France
by rogerfed1 » 27 Jun 2011, 00:58
Hi, Where i have to change for i have the "hudinfoboard" without transparency?
Thanks
-

rogerfed1
- crazy of the little yellow ball

-
- Messages: 515
- Gaming Since: 15 Jan 2011, 04:47
by kersou » 28 Jun 2011, 23:21
rogerfed1 wrote:Hi, Where i have to change for i have the "hudinfoboard" without transparency?
Thanks
I think (I'm not sure) that you have to modify the picture "Tennis Elbow 2011\menu\art\ico\hudinfoboard.tga" with your favorite photo editor.
Set the background to be not transparent and the new pict must have the same size of the original pict (before any modif do a back-up)
Kersou
-
kersou
- crazy of the little yellow ball

-
- Messages: 613
- Gaming Since: 23 Jan 2011, 00:47
- Location: France
by rogerfed1 » 06 Jul 2011, 01:01
kersou wrote:I think (I'm not sure) that you have to modify the picture "Tennis Elbow 2011\menu\art\ico\hudinfoboard.tga" with your favorite photo editor.
Set the background to be not transparent and the new pict must have the same size of the original pict (before any modif do a back-up)
Thanks
How can i change the fonts color of the sets, to be differents to the games fonts color? beacuse i edit in the hudboardscoresub but change both.
Thanks

-

rogerfed1
- crazy of the little yellow ball

-
- Messages: 515
- Gaming Since: 15 Jan 2011, 04:47
by kersou » 07 Jul 2011, 00:47
Hello,
Try something like this for hudboardscoresub.menu (if someone has an easier solution, tell us...):
- Code: Select all
Include Hud.Def
Include Menu.Def
Background #PreviousMenu
Font Default HugeChars 11 15 0xFFFFFFFF 0 Circle Center Center Shadow0
Font SetF HugeChars 11 15 0xFFFFFF5F 0 Circle Center Center Shadow0
ShrinkTo 0 0 // Don't shrink
def x ScoreDx 0.5
def $s1 StatTeam1Set1
def $s2 StatTeam2Set1
item
{
Image Ico/ScoreBoardSet ScoreDx ScoreDy
Pos 0 0 Left Up
Font ScoreBgF
OnRender
{
MulAddMulCfg /Intern/ScoreX 1 -ScoreDx
}
ShowIfNot $1 0
ShowIf $2 0
}
add ScoreDx ScoreDx
item
{
Image Ico/ScoreBoardSet ScoreDx ScoreDy
Pos -x 0 Left Up
Font ScoreBgF
OnRender
{
MulAddMulCfg /Intern/ScoreX 1 -ScoreDx
}
ShowIf $2 1
}
add x 1
item
{
Text /$s1/Score
Pos x ScoreYu
Font SetF
ShowIfNot $1 0
ShowIf /Intern/CurrentSet $1 5
}
item
{
Text /$s2/Score
Pos x ScoreYd
Font SetF
ShowIfNot $1 0
ShowIf /Intern/CurrentSet $1 5
}
item
{
Text /$s1/Score
Pos x ScoreYu
ShowIf $1 0
ShowIf /Intern/CurrentSet $1 5
}
item
{
Text /$s2/Score
Pos x ScoreYd
ShowIf $1 0
ShowIf /Intern/CurrentSet $1 5
}
Bye
Kersou
-
kersou
- crazy of the little yellow ball

-
- Messages: 613
- Gaming Since: 23 Jan 2011, 00:47
- Location: France
Return to Modding - TE2013
Who is online
Users browsing this forum: CCBot [Bot], Petal [Bot], SemRush [Bot] and 34 guests