How to add new scoreboard to WT?

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

How to add new scoreboard to WT?

Postby miharu0607 » 17 Jun 2013, 08:36

I'm using kersou old good pack of scoreboards and actually I managed to add hud which is visible while playling Training Club mode. Somehow when I try to add CHGR files, they're not visible while playing challengers.

it's hud.def
Code: Select all
def   InfoBarW   150
def   InfoBarH   InfoBarW 0.1667      // = 128 / 768

Font   Default   HugeChars 9 12 0xFFFFFFFF 0 Circle Center Center Shadow LH1.15
Font   BigF   HugeChars 15 20 0xFFEFEFAF 0x4F000000 Circle Center Center
Font   IcoF   HugeChars 11 14 0xFFFFFFFF 0 Center Center
Font   Font3d   HugeChars 1 1 0xFFFFFF5F 0 Circle Center Center Shadow0 FixedWidth0.75

//=============================================================================
//=== Numbers and categories of specific tournaments
//=============================================================================
// Tournament numbers during the year
def AustralianOpenNum    23
def RolandGarrosNum      221
def WimbledonNum       260
def USOpenNum          364

// Categories
def GdSlamCat          0
def ATP1000aCat       1
def ATP1000bCat       2
def ATP500aCat          3
def ATP500bCat          4
def ATP250aCat          5
def ATP250bCat          6
def ATPWTFCat         14
def DavisCupCat       15
def CHGRaCat         16
def CHGRbCat         17
def CHGRcCat         18

//=============================================================================
//=== List of the different available HUD
//=============================================================================
def HUD_DEF         0
def HUD_AO         10
def HUD_AO11      11
def HUD_AO12      12
def HUD_RG         20
def HUD_WIM         30
def HUD_USO         40
def HUD_ATP1000      50
def HUD_ATP500      60
def HUD_ATP250      70
def HUD_ATPWTF      80
def HUD_DAVISCUP   90
def HUD_OLG      100
def HUD_CHGR      110

// HUD selected for Training Club and Online Match among the values of the above list
def HUD_CHGR





and hud.above where I am supposed to add some lines with challengers

Code: Select all
Include Hud.Def

Background #Game

WideScreen
ShrinkTo 0 0   // Don't shrink

item
{
   OnEnter

   OnAction
   {
      SetCfg /Intern/IG_InfoX -InfoBarW
      UpdateCamera3d /Camera/Elevation /Camera/Aperture
      SetCfg /Intern/SelectedHUD HUD_DEF
      SetCfg /Intern/PlayerCfg /WorldTour/PlayerCfg
      //=== Player Name Formatting Example
      // f = First Name Untouched ; F = First Name Uppercase
      // l = Last Name Untouched ; L = Last Name Uppercase
      // 3. => Max of 3 Letters, add a point if shortened or followed by more text without space
//      FormatTeamName /Intern/Team1s 1 "f3.L5."
//      FormatTeamName /Intern/Team2s 2 "F l"
//      // In-Game current formatting:
//      FormatTeamName /Intern/Team1s 1 "f1.l3"
   }
   OnActionIf /Intern/GameType 1
   {
      SetCfg /Intern/PlayerCfg /TrainingClub/PlayerCfg
   }
   OnActionIf /WT_Intern/TrnNum AustralianOpenNum AustralianOpenNum
   {
      SetCfg /Intern/SelectedHUD HUD_AO
   }
   OnActionIf /WT_Intern/TrnNum RolandGarrosNum RolandGarrosNum
   {
      SetCfg /Intern/SelectedHUD HUD_RG
   }
   OnActionIf /WT_Intern/TrnNum WimbledonNum WimbledonNum
   {
      SetCfg /Intern/SelectedHUD HUD_WIM
   }
   OnActionIf /WT_Intern/TrnNum USOpenNum USOpenNum
   {
      SetCfg /Intern/SelectedHUD HUD_USO
   }
   OnActionIf /WT_Intern/TrnCat ATP1000aCat ATP1000bCat
   {
      SetCfg /Intern/SelectedHUD HUD_ATP1000
   }
   OnActionIf /WT_Intern/TrnCat ATP500aCat ATP500bCat
   {
      SetCfg /Intern/SelectedHUD HUD_ATP500
   }
   OnActionIf /WT_Intern/TrnCat ATP250aCat ATP250bCat
   {
      SetCfg /Intern/SelectedHUD HUD_ATP250
   }
   OnActionIf /WT_Intern/TrnCat ATPWTFCat ATPWTFCat
   {
      SetCfg /Intern/SelectedHUD HUD_ATPWTF
   }
   OnActionIf /WT_Intern/TrnCat DavisCupCat DavisCupCat
   {
      SetCfg /Intern/SelectedHUD HUD_DAVISCUP
   }
   OnActionIfNot /Intern/GameType 2 2
   {
      SetCfg /Intern/SelectedHUD HUD_TrainingClub
   }
   OnActionIf /WT_Intern/TrnCat CHGRaCat CHGRbCat CHGRcCat
   {
      SetCfg /Intern/SelectedHUD HUD_CHGR
   }

   Invisible
}

//======================== Management of Specific HUD
item HUD_AustralianOpen
{
   SubMenuIf /Intern/SelectedHUD HUD_AO HUD_AO AO_HudAbove
}
item HUD_AustralianOpen11
{
   SubMenuIf /Intern/SelectedHUD HUD_AO11 HUD_AO11 AO11_HudAbove
}
item HUD_AustralianOpen12
{
   SubMenuIf /Intern/SelectedHUD HUD_AO12 HUD_AO12 AO12_HudAbove
}

item HUD_RolandGarros
{
   SubMenuIf /Intern/SelectedHUD HUD_RG HUD_RG RG_HudAbove
}

item HUD_Wimbledon
{
   SubMenuIf /Intern/SelectedHUD HUD_WIM HUD_WIM WIM_HudAbove
}

item HUD_USOpen
{
   SubMenuIf /Intern/SelectedHUD HUD_USO HUD_USO USO_HudAbove
}

item HUD_ATP1000
{
   SubMenuIf /Intern/SelectedHUD HUD_ATP1000 HUD_ATP1000 A1000_HudAbove
}

item HUD_ATP500
{
   SubMenuIf /Intern/SelectedHUD HUD_ATP500 HUD_ATP500 A500_HudAbove
}

item HUD_ATP250
{
   SubMenuIf /Intern/SelectedHUD HUD_ATP250 HUD_ATP250 A250_HudAbove
}

item HUD_ATPWTF
{
   SubMenuIf /Intern/SelectedHUD HUD_ATPWTF HUD_ATPWTF AWTF_HudAbove
}

item HUD_DAVISCUP
{
   SubMenuIf /Intern/SelectedHUD HUD_DAVISCUP HUD_DAVISCUP DAVIS_HudAbove
}

item HUD_Default
{
   SubMenuIf /Intern/SelectedHUD HUD_DEF HUD_DEF DEF_HudAbove
}

item HUD_CHGR
{
   SubMenuIf /Intern/SelectedHUD HUD_CHGR HUD_CHGR CHGR_HudAbove
}


//======================== Pause / IG_Message
item   IG_Message
{
   CycleButton #Text /Intern/IGM_Param1 /Intern/IGM_Param2
   Pos 320 240

   Font BigF

   OnAction
   {
      SlideCfg /Intern/IG_Message 0 255
   }

   UnSelectable
   ShowIfNot /Intern/IG_Message -1
}

//======================== Chat

item
{
   SubMenu HudChatPreset

   ShowIfNot /Intern/ShiftDown 0
   ShowIfNot /NW_Intern/Status 0
}


item
{
   SubMenu HudChat

   ShowIf /Intern/MatchEnd 1
   ShowIf /Intern/InReplay 0
   ShowIf /Intern/IG_Message 0 !Or
   ShowIf /NW_Intern/OtherPeerState 1 !Or
   ShowIfNot /NW_Intern/Status 0
}

item
{
   SubMenu HudChatAbove

   ShowIfNot /Intern/MatchEnd 1
   ShowIfNot /Intern/IG_Message 0
   ShowIfNot /NW_Intern/OtherPeerState 1
   ShowIfNot /NW_Intern/Status 0
}

//======================== Other peer state
item NW_OPState
{
   CycleButton #Text /NW_Intern/Other
   Pos 320 150

   Font BigF

   OnAction
   {
      SlideCfg /NW_Intern/OtherPeerState 1 255
   }

   UnSelectable
   ShowIfNot /NW_Intern/OtherPeerState 0
   ShowIf /Intern/InReplay 0
}


item NW_Cant
{
   CycleButton #Text
   Pos 320 200
   Font BigF

   OnAction
   {
      SlideCfg /NW_Intern/CantNum 0 10
   }

   UnSelectable
   TimeAlpha /NW_Intern/CantTime 750
}


//======================== NW Trial Time
def IcoS   32
def x   30
def y   IcoS 1.5
def dx   50

Font   TimeF   HugeChars 15 20 0xFF4F8FFF 0x7F000000 Circle Center Center Shadow

item
{
   Text /NW_Intern/TrialTime
   Pos 30 y
   add x 50
   Font TimeF

   ShowIfNot /NW_Intern/TrialTime -100 -0.01
}

//======================== Network icons
item
{
   Image Ico/NW_Slow IcoS IcoS
   Pos x y
   Font IcoF
   add x IcoS 1.25
   TimeAlpha /NW_Intern/TimeSlow 1000
}


item
{
   Image Ico/NW_Drop IcoS IcoS
   Pos x y
   Font IcoF
   add x IcoS 1.5
   TimeAlpha /NW_Intern/TimeDrop 1000
}


item
{
   Text NW_Resync
   Pos 320 160

   Font BigF

   TimeAlpha /NW_Intern/TimeResync+500 2000
}


//======================== Ping
Font   PingF   HugeChars 9 12 0xFF4F8FFF 0x7F000000 Circle Right Center Shadow

item
{
   Text NW_InPing /NW_Intern/InPing
   Pos 145 20
   add x 50
   Font PingF

   ShowIfNot /NW_Intern/Status 0
}

//======================== Strike Count
item
{
   Text #%02.f /Intern/StrikeCount
   Pos /Intern/InfoBoardX /Intern/InfoBoardY-2 Right Bottom
   Font BigF

   ShowIf /Menu/ShowStrikeCount 1
}

//======================== InfoBar
item
{
   SubMenu HudInfo
   Pos /Intern/IG_InfoX 20

   ShowIf /Intern/IG_InfoS -0.999f 10.0f
   ShowIfNot /Intern/HudInfo 2 4
}


//======================== SweetSpot
def IcoS   64

item SweetSpot01
{
   CycleButton #ImageGI
   Image Ico/SweetSpotGreen IcoS IcoS
   Pos 8 /Intern/CarretY Left Down
   Font IcoF

   OnAction
   {
      SlideCfg /Intern/HudSweetSpot 0 2
   }

   OnRender
   {
      SetCfg /Intern/CarretY 282
      MulAddMulCfg /Intern/CarretY 1 /Intern/SweetSpotSide -190
   }

   UnSelectable
   TimeAlpha /Intern/TimeSweetSpot+2000 500
}

item SweetSpot02
{
   Image Ico/SweetSpotOrange IcoS IcoS
   Font IcoF
   Invisible

   TimeAlpha /Intern/TimeSweetSpot+2000 500
}

item SweetSpot03
{
   Image Ico/SweetSpotRed IcoS IcoS
   Font IcoF
   Invisible

   TimeAlpha /Intern/TimeSweetSpot+2000 500
}

//======================== Form
item HudFormLeftUp
{
   Pos /Intern/WideBorderLeft 70
   SubMenu HudFormLeft 2
   ShowIfNot /InGame_p2/ShortForm 2
}

item HudFormLeftDown
{
   Pos /Intern/WideBorderLeft 430
   SubMenu HudFormLeft 1
   ShowIfNot /InGame_p1/ShortForm 2
}

item HudFormRightUp
{
   Pos /Intern/WideBorderRight 70
   SubMenu HudFormRight 4
   ShowIfNot /InGame_p4/ShortForm 2
}

item HudFormRightDown
{
   Pos /Intern/WideBorderRight 430
   SubMenu HudFormRight 3
   ShowIfNot /InGame_p3/ShortForm 2
}



Somehow, it's not working while playling WT. So maybe someone has any advice what shall I do?
TURSUNOV KUBOT JANOWICZ SAFIN KLIZAN CORRETJA PRZYSIĘŻNY MAHUT TSONGA - MY ATP HEROES.
Mods made by me - topic29-11393.php#p128957
miharu0607
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1295
Gaming Since: 30 Mar 2013, 22:59
Location: Munich

Re: How to add new scoreboard to WT?

Postby phucnguyen0209 » 17 Jun 2013, 09:36

I think you have to open your TourATP.ini and TourcategoryATP.ini to check is that match with the scoreboard in hudabove.menu.I don't know very extractly,but try man :D .Good luck! :jap:
Download my patch version 2013 here:http://www.managames.com/Forum/topic29-13014.php

Trying to comeback
User avatar
phucnguyen0209
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 776
Gaming Since: 12 Oct 2012, 12:40
Location: Viet Nam

Re: How to add new scoreboard to WT?

Postby miharu0607 » 17 Jun 2013, 09:39

I did try... I even downloaded some other mods to find out how they managed to do it, but no progress. And the worst thing is that, there is anybody who's going to help us with that, cause only two ppl know what should be done.
TURSUNOV KUBOT JANOWICZ SAFIN KLIZAN CORRETJA PRZYSIĘŻNY MAHUT TSONGA - MY ATP HEROES.
Mods made by me - topic29-11393.php#p128957
miharu0607
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1295
Gaming Since: 30 Mar 2013, 22:59
Location: Munich

Re: How to add new scoreboard to WT?

Postby MarcaTennis » 17 Jun 2013, 13:44

You are using the old system of CustomHUD, just download the Rogfed1 Huds ;) But you need to buy the game
Grunt making tutorial => http://www.managames.com/Forum/topic29-9019.php
"The New ATP Mod By Our Team V1" a very great patch is coming => http://www.managames.com/Forum/topic29-12544.php
TE Tour Sngle Rank : 77
User avatar
MarcaTennis
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1359
Gaming Since: 20 May 2012, 10:42
Location: Boumerdès, Algeria

Re: How to add new scoreboard to WT?

Postby miharu0607 » 17 Jun 2013, 14:01

MarcaTennis wrote:You are using the old system of CustomHUD, just download the Rogfed1 Huds ;) But you need to buy the game

Guess what babe... I have bought the game, version 2013 with the most recent update, and I don't want to play with calendar made by someone, because I've made almost 100% real ATP Calendar (all ATP events plus all challengers plus as many futures as the game allows to run), so I am just asking for some advices that would help me to have CHGR scoreboard in WT, cause right now the default scoreboard is appearing (the one made by kersou).
And I am trying to run rogerfed1 huds with my calendar, at the moment CHGR files, but they are not visible.
TURSUNOV KUBOT JANOWICZ SAFIN KLIZAN CORRETJA PRZYSIĘŻNY MAHUT TSONGA - MY ATP HEROES.
Mods made by me - topic29-11393.php#p128957
miharu0607
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1295
Gaming Since: 30 Mar 2013, 22:59
Location: Munich

Re: How to add new scoreboard to WT?

Postby MarcaTennis » 17 Jun 2013, 14:28

Yes,i didn't tell you "use the tour.ini of rogfed1", use only HUDs. Then, in the Tour.ini, insert CustomHUD = Hud_AO above the tournament of Australian Open if you want to set it to....ect
Grunt making tutorial => http://www.managames.com/Forum/topic29-9019.php
"The New ATP Mod By Our Team V1" a very great patch is coming => http://www.managames.com/Forum/topic29-12544.php
TE Tour Sngle Rank : 77
User avatar
MarcaTennis
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1359
Gaming Since: 20 May 2012, 10:42
Location: Boumerdès, Algeria

Re: How to add new scoreboard to WT?

Postby miharu0607 » 17 Jun 2013, 14:35

Gonna check it, sukran in advance (previously I tried something similar, but was adding it to categories)
TURSUNOV KUBOT JANOWICZ SAFIN KLIZAN CORRETJA PRZYSIĘŻNY MAHUT TSONGA - MY ATP HEROES.
Mods made by me - topic29-11393.php#p128957
miharu0607
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1295
Gaming Since: 30 Mar 2013, 22:59
Location: Munich

Re: How to add new scoreboard to WT?

Postby MarcaTennis » 17 Jun 2013, 14:41

Yes, it works too, but Rogfed1 has hud for each tournament ;) (but not 100%)
Grunt making tutorial => http://www.managames.com/Forum/topic29-9019.php
"The New ATP Mod By Our Team V1" a very great patch is coming => http://www.managames.com/Forum/topic29-12544.php
TE Tour Sngle Rank : 77
User avatar
MarcaTennis
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1359
Gaming Since: 20 May 2012, 10:42
Location: Boumerdès, Algeria

Re: How to add new scoreboard to WT?

Postby miharu0607 » 17 Jun 2013, 14:49

Ok, it helped Marca with light scoreboards during game, somehow in folder with CHGR scoreboards it is also full scoreboard that should appear after each game, and it's not appearing. Do you have any solution for that?
Thanks for the previous advice.
TURSUNOV KUBOT JANOWICZ SAFIN KLIZAN CORRETJA PRZYSIĘŻNY MAHUT TSONGA - MY ATP HEROES.
Mods made by me - topic29-11393.php#p128957
miharu0607
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1295
Gaming Since: 30 Mar 2013, 22:59
Location: Munich

Re: How to add new scoreboard to WT?

Postby MarcaTennis » 17 Jun 2013, 15:03

It's not appearing because Challengers don't have Full SBs ;)
Grunt making tutorial => http://www.managames.com/Forum/topic29-9019.php
"The New ATP Mod By Our Team V1" a very great patch is coming => http://www.managames.com/Forum/topic29-12544.php
TE Tour Sngle Rank : 77
User avatar
MarcaTennis
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1359
Gaming Since: 20 May 2012, 10:42
Location: Boumerdès, Algeria

Re: How to add new scoreboard to WT?

Postby miharu0607 » 17 Jun 2013, 15:45

They don't? So why all the files are in the CHGR art folder?
I mean that full sb:
Image
TURSUNOV KUBOT JANOWICZ SAFIN KLIZAN CORRETJA PRZYSIĘŻNY MAHUT TSONGA - MY ATP HEROES.
Mods made by me - topic29-11393.php#p128957
miharu0607
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1295
Gaming Since: 30 Mar 2013, 22:59
Location: Munich

Re: How to add new scoreboard to WT?

Postby MarcaTennis » 17 Jun 2013, 15:56

I think that Rogfed1 didn't insert the correct code, i'm sure, it happens to me sometimes
Sorry, i'm very busy, i cannot find the correct code for you :( I need to finish my work for "the new ATP Mod ...blablabla" soon
I'm so sorry :(

P.S : Ask him in his thread, i'm sure he'll help you :D
Grunt making tutorial => http://www.managames.com/Forum/topic29-9019.php
"The New ATP Mod By Our Team V1" a very great patch is coming => http://www.managames.com/Forum/topic29-12544.php
TE Tour Sngle Rank : 77
User avatar
MarcaTennis
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1359
Gaming Since: 20 May 2012, 10:42
Location: Boumerdès, Algeria

Re: How to add new scoreboard to WT?

Postby rogerfed1 » 17 Jun 2013, 18:52

MarcaTennis wrote:I think that Rogfed1 didn't insert the correct code, i'm sure, it happens to me sometimes
P.S : Ask him in his thread, i'm sure he'll help you :D

miharu0607 wrote:They don't? So why all the files are in the CHGR art folder?
I mean that full sb:
Image

The code is ok, Challenger Tour doesn't have Full sb in the reality. For that reason i disable that option.
I created a custom scoreboard for it , just for the case somebody wanted to play with fullsb option.
Just go to chgr_hud and search this line "def FullScoreTimeDisp -1", replace this for "def FullScoreTimeDisp 5" and should appear.

miharu0607 wrote:and I don't want to play with calendar made by someone, because I've made almost 100% real ATP Calendar (all ATP events plus all challengers plus as many futures as the game allows to run), so I am just asking for some advices that would help me to have CHGR scoreboard in WT, cause right now the default scoreboard is appearing (the one made by kersou).
And I am trying to run rogerfed1 huds with my calendar, at the moment CHGR files, but they are not visible.

Sorry you don't like my calendar, but i just used the one of Sam megapatch 2012.
To have challenger scoreboards in WT just go to TourCategory.ATP end at the end of each challenger category add this line "CustomHud = Hud_CHGR" and must work.
User avatar
rogerfed1
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 515
Gaming Since: 15 Jan 2011, 04:47

Re: How to add new scoreboard to WT?

Postby MarcaTennis » 17 Jun 2013, 21:22

The code is ok, Challenger Tour doesn't have Full sb in the reality

I told that to him :yes:
Grunt making tutorial => http://www.managames.com/Forum/topic29-9019.php
"The New ATP Mod By Our Team V1" a very great patch is coming => http://www.managames.com/Forum/topic29-12544.php
TE Tour Sngle Rank : 77
User avatar
MarcaTennis
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1359
Gaming Since: 20 May 2012, 10:42
Location: Boumerdès, Algeria

Re: How to add new scoreboard to WT?

Postby miharu0607 » 18 Jun 2013, 07:17

rogerfed1 wrote:Sorry you don't like my calendar, but i just used the one of Sam megapatch 2012.
To have challenger scoreboards in WT just go to TourCategory.ATP end at the end of each challenger category add this line "CustomHud = Hud_CHGR" and must work.


Thanks for your help, now it works extraordinary. And it's not that I don't like your calendar, it's more like I can't use your calendar because of few reasons.
The first one is the ammount of players I have - there are more than 1450 of them in 2004, so with only 5-6 tournaments per week, they couldn't play, so I am using calendar I made a some time ago, and I have found out that there are limits related to ammount of tournaments (and this is not only the rule of max 30 draws per week).
TURSUNOV KUBOT JANOWICZ SAFIN KLIZAN CORRETJA PRZYSIĘŻNY MAHUT TSONGA - MY ATP HEROES.
Mods made by me - topic29-11393.php#p128957
miharu0607
crazy of the little yellow ball
crazy of the little yellow ball
 
Messages: 1295
Gaming Since: 30 Mar 2013, 22:59
Location: Munich


Return to Modding - TE2013

Who is online

Users browsing this forum: AhRefs [Bot], Google [Bot] and 25 guests