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 rogerfed1 » 07 Jul 2011, 05:00
kersou wrote:Hello,
Try something like this for hudboardscoresub.menu (if someone has an easier solution, tell us...): Bye
Thanks it works
Is something like this for the names and server indicator?
-

rogerfed1
- crazy of the little yellow ball

-
- Messages: 515
- Gaming Since: 15 Jan 2011, 04:47
by haas192 » 07 Jul 2011, 08:10
Is it possible to use other texture for the played sets and the certain sets? if yes please someone tell me how
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 » 07 Jul 2011, 08:13
rogerfed1 wrote:Thanks it works
Is something like this for the names and server indicator?
yes.
In hudabove.menu, the names and the server indicator used the same font "LilF" but with a different size (look for the command "Fontsize LilF 10 13" before names item).
In the header of this file, you can define another font for the names :
- Code: Select all
Font NameF HugeChars 10 13 0xFFFFFFFF 0 Circle Center Center Shadow0
And use it for names item :
- Code: Select all
//=== Names
def Sdx ScoreDx -2.75
def ShrDx ScoreDx 2.5
item
{
Text /Intern/Team1s
Pos /Intern/ScoreX+Sdx ScoreYu Left Center
Font NameF
ShrinkToMaxPixel ShrDx
}
item
{
Text /Intern/Team2s
Pos /Intern/ScoreX+Sdx ScoreYd Left Center
Font NameF
ShrinkToMaxPixel ShrDx
}
Kersou
-
kersou
- crazy of the little yellow ball

-
- Messages: 613
- Gaming Since: 23 Jan 2011, 00:47
- Location: France
by haas192 » 07 Jul 2011, 08:18
thanks for your help, but I mean the scoreboard background.
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 » 07 Jul 2011, 08:41
haas192 wrote:Is it possible to use other texture for the played sets and the certain sets? if yes please someone tell me how
I think it s possible
Try this to have a different font for the current set (
sorry I have no time to test it) :
- 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
Font CurrentSetF HugeChars 11 15 0xFF2F6FAF 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
ShowIfNot /Intern/CurrentSet $1
}
item
{
Text /$s2/Score
Pos x ScoreYd
Font SetF
ShowIfNot $1 0
ShowIf /Intern/CurrentSet $1 5
ShowIfNot /Intern/CurrentSet $1
}
item
{
Text /$s1/Score
Pos x ScoreYu
Font CurrentSetF
ShowIfNot $1 0
ShowIf /Intern/CurrentSet $1
}
item
{
Text /$s2/Score
Pos x ScoreYd
Font CurrentSetF
ShowIfNot $1 0
ShowIf /Intern/CurrentSet $1
}
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
}
Kersou
-
kersou
- crazy of the little yellow ball

-
- Messages: 613
- Gaming Since: 23 Jan 2011, 00:47
- Location: France
by haas192 » 07 Jul 2011, 11:34
thanks but it didn't change the background of the scoreboard
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 haas192 » 07 Jul 2011, 11:45
I mean this:
I mean this.JPG
Please someone make me this scoreboard exactly like this or as alike as its possible.
Thanks,
haas192
You do not have the required permissions to view the files attached to this post.
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 » 08 Jul 2011, 09:29
For the background of a font, you can use :
- Code: Select all
Font CurrentSetF HugeChars 11 15 0xFF000000 0xFFFFFF5F Rectangle
But it won't suit to your wish (and also mine...)
I think I will create a new ico for the current set.
I will try to do it this week-end.
For the names in upper case, take a look at this topic :
http://www.managames.com/Forum/topic29-4727.phpbye
Kersou
-
kersou
- crazy of the little yellow ball

-
- Messages: 613
- Gaming Since: 23 Jan 2011, 00:47
- Location: France
by haas192 » 10 Jul 2011, 19:04
We are really curious about your new ico XDD anyway you are an expert at scoreboards

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 » 10 Jul 2011, 21:06
Sorry not a lot of time for me this week-end !!!
For the moment, I can only give you that picture... be patient !!! I like it but I m not an expert !!!
scoreboard_v1.jpg
ciao
You do not have the required permissions to view the files attached to this post.
Kersou
-
kersou
- crazy of the little yellow ball

-
- Messages: 613
- Gaming Since: 23 Jan 2011, 00:47
- Location: France
by haas192 » 10 Jul 2011, 21:46
It is very similar to the real one, only the current set ico misses great work Kersou

)
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 » 11 Jul 2011, 00:18
hereafter a new snapshot:
scoreboard_v2.jpg
And a zip with menu and ico files
Save your files first : scoreboard not tested, I don't know how it reacts after one set played

)
scoreboard_v2.zip
Wait for your feedbacks!
bye
You do not have the required permissions to view the files attached to this post.
Kersou
-
kersou
- crazy of the little yellow ball

-
- Messages: 613
- Gaming Since: 23 Jan 2011, 00:47
- Location: France
by kersou » 11 Jul 2011, 08:55
Another version :
scoreboard_v3.jpg
haas192 ,
Have you got a link to the real scoreboard in higher quality ?
You do not have the required permissions to view the files attached to this post.
Kersou
-
kersou
- crazy of the little yellow ball

-
- Messages: 613
- Gaming Since: 23 Jan 2011, 00:47
- Location: France
by haas192 » 11 Jul 2011, 10:33
yes wait a moment and I'll post 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 haas192 » 11 Jul 2011, 10:43
You do not have the required permissions to view the files attached to this post.
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
Return to Modding - TE2013
Who is online
Users browsing this forum: ClaudeBot, Google [Bot], Meta [Bot] and 3 guests