Page 29 of 39

Re: scoreboard

PostPosted: 22 Oct 2011, 16:18
by hamzafederer
salut kersou voici les captures comme promis.
le hudinfobar ne s'affiche pas a coté du scoreboard par contre l'emplacement que tu as changé dans cette version marche pour moi
pour repondre a ta question TE ne crash jamais chez moi
eehhh et a propos des hudkey que haas192 a créer,est ce que je les mets tous ou seulement celui que je vais utiliser dans le tournoi? :!: :!: :!:
une idée kersou??

Re: scoreboard

PostPosted: 22 Oct 2011, 19:06
by Fede Albanello
eso es porque el hudinfoboard esta configurado para courts 3d, tenes que cambiarlo para courts 2d

change in A1000_hudavobe.menu this line:

//=== InfoBoard
item
{
Image Ico/ATP1000/HudInfoBoard InfoBoardW InfoBoardH

Pos /Intern/InfoBoardX /Intern/InfoBoardY Right Up
Font IcoF

ShowIfNot /Intern/OverallPointTime /Intern/PointTime /Intern/PointTime !Or
ShowIfNot /Intern/PointTime 0 FullScoreTimeDisp !Or
ShowIfNot /StatTeam1Set0/Score 0 0 !Or
ShowIfNot /StatTeam2Set0/Score 0 0 !Or
ShowIfNot /3dEngine/Stadium3d 0
}

item
{
Text /Intern/InfoBoard

Pos /Intern/InfoBoardTextX /Intern/InfoBoardTextY Center Up
Font InfoF

ShrinkToMaxPixel InfoBoardW

ShowIfNot /Intern/OverallPointTime /Intern/PointTime /Intern/PointTime !Or
ShowIfNot /Intern/PointTime 0 FullScoreTimeDisp !Or
ShowIfNot /StatTeam1Set0/Score 0 0 !Or
ShowIfNot /StatTeam2Set0/Score 0 0 !Or
ShowIfNot /3dEngine/Stadium3d 0
}


For this:

//=== InfoBoard
item
{
Image Ico/ATP1000/HudInfoBoard InfoBoardW InfoBoardH

Pos /Intern/InfoBoardX /Intern/InfoBoardY Right Up
Font IcoF

ShowIfNot /Intern/OverallPointTime /Intern/PointTime /Intern/PointTime !Or
ShowIfNot /Intern/PointTime 0 FullScoreTimeDisp !Or
ShowIfNot /StatTeam1Set0/Score 0 0 !Or
ShowIfNot /StatTeam2Set0/Score 0 0 !Or
ShowIfNot /2dEngine/Stadium2d 1
}

item
{
Text /Intern/InfoBoard

Pos /Intern/InfoBoardTextX /Intern/InfoBoardTextY Center Up
Font InfoF

ShrinkToMaxPixel InfoBoardW

ShowIfNot /Intern/OverallPointTime /Intern/PointTime /Intern/PointTime !Or
ShowIfNot /Intern/PointTime 0 FullScoreTimeDisp !Or
ShowIfNot /StatTeam1Set0/Score 0 0 !Or
ShowIfNot /StatTeam2Set0/Score 0 0 !Or
ShowIfNot /2dEngine/Stadium2d 1
}

Re: scoreboard

PostPosted: 22 Oct 2011, 19:30
by kersou
The Potro wrote:cant you fix so it also changes auto in club&online mode?

It would be great but for the moment it's not planned and I am not sure I could fix this!

hamzafederer wrote:salut kersou voici les captures comme promis.
le hudinfobar ne s'affiche pas a coté du scoreboard par contre l'emplacement que tu as changé dans cette version marche pour moi
pour repondre a ta question TE ne crash jamais chez moi
eehhh et a propos des hudkey que haas192 a créer,est ce que je les mets tous ou seulement celui que je vais utiliser dans le tournoi? :!: :!: :!:
une idée kersou??

Je vois que tu joues en 2D : comme je n'ai pas changé le comportement d'origine du infoboard, celui-ci ne s'affiche que dans le mode 3D !
Par exemple, dans A1000_hudabove.menu, supprime les lignes avec "ShowIfNot /3dEngine/Stadium3d 0".
Dis moi si ça marche et si ça te convient : je l'ajouterai dans la prochaine version !

Rassure-moi : le full sb s'affiche correctement ?

Pour l'instant, les images hudkeypoints ne sont pas utilisés dans le sb 7.1 : ça marchera dans la prochaine version... prévue fin de semaine prochaine !
Ciao

Re: scoreboard

PostPosted: 25 Oct 2011, 17:35
by SamModder
Kersou with the new update of today for TE how exactly do we change the scoreboard for it to have only the familly name on the little scoreboard (FEDERER on small sb and Roger FEDERER on full one)?

Re: scoreboard

PostPosted: 25 Oct 2011, 22:08
by kersou
sam250 wrote:Kersou with the new update of today for TE how exactly do we change the scoreboard for it to have only the familly name on the little scoreboard (FEDERER on small sb and Roger FEDERER on full one)?

This new update is great (thx again Manutoo): everything I ve asked is in!
I will test all those new features tomorrow.
But I answer your question without any test:
in hudabove.menu, I read:
Code: Select all
item
{
   OnEnter

   OnAction
   {
      SetCfg /Intern/IG_InfoX -InfoBarW
      UpdateCamera3d /Camera/Elevation /Camera/Aperture

      //=== 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"
   }

   Invisible
}

So, to only have the last name in Uppercase, try this:

Code: Select all
item
{
   OnEnter

   OnAction
   {
      SetCfg /Intern/IG_InfoX -InfoBarW
      UpdateCamera3d /Camera/Elevation /Camera/Aperture

      //=== 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"
      FormatTeamName /Intern/Team1s 1 "L"
      FormatTeamName /Intern/Team2s 2 "L"
   }

   Invisible
}

Re: scoreboard

PostPosted: 25 Oct 2011, 22:34
by hamzafederer
salut kersou
stp quand tu uploadera la prochaine version avec le hudkey en 2D et les vrai signes de tournoi??

Re: scoreboard

PostPosted: 26 Oct 2011, 02:06
by The Potro
The Potro wrote:cant you fix so it also changes auto in club&online mode?

kersou wrote:It would be great but for the moment it's not planned and I am not sure I could fix this!

ofourse you can, you have to be positive and optimistic :)

plzz fix that :whistle: :yes: :bounce:

Re: scoreboard

PostPosted: 26 Oct 2011, 11:35
by kersou
hamzafederer wrote:salut kersou
stp quand tu uploadera la prochaine version avec le hudkey en 2D et les vrai signes de tournoi??

Peut-être cette semaine ! J'ai bcp de choses à intégrer avec la nouvelle version de TE.
"Les vrais signes de tournoi" ? Tu veux dire les logos ?

The Potro wrote:ofourse you can, you have to be positive and optimistic :)

Yes I am :D
In TC&Online modes, maybe I will try to add a button to chose the sb in the Game settings (just below the court selection).

Re: scoreboard

PostPosted: 26 Oct 2011, 14:12
by SamModder
Thanks kersou it worked :) Now for the next version can you place the scoreboard a little better like in TV please? Like a little more higher like you can see here:

Re: scoreboard

PostPosted: 26 Oct 2011, 17:53
by kersou
sam250 wrote:Thanks kersou it worked :) Now for the next version can you place the scoreboard a little better like in TV please? Like a little more higher like you can see here:

I am not against that but maybe a higher sb would not be very playable (over the player depending on the selected camera).
I will test it.

Re: scoreboard

PostPosted: 26 Oct 2011, 18:57
by andy09
kersou, you may start the game before signs appear of the players as this picture: :)

Re: scoreboard

PostPosted: 26 Oct 2011, 22:39
by suvurvius
Oh Kersou, el light scoreboard funciona perfecto con solo los apellidos de los jugadores y en mayusculas!!!! Se puede colocar también en mayusculas los nombres en el fullscoreboard? Quedaría perfecto :)

Re: scoreboard

PostPosted: 27 Oct 2011, 00:14
by kersou
andy09 wrote:kersou, you may start the game before signs appear of the players as this picture: :)

good idea but not in the next version... ;-)
suvurvius wrote:Oh Kersou, el light scoreboard funciona perfecto con solo los apellidos de los jugadores y en mayusculas!!!! Se puede colocar también en mayusculas los nombres en el fullscoreboard? Quedaría perfecto :)

yes I tested it this afternoon (with Manutoo's help) and it works, use the following lines in hudabove.menu:
Code: Select all
      FormatTeamName /Intern/Team1s 1 "f L"
      SetCfg /Intern/Team1 "" // Set Empty String
      CatCfg /Intern/Team1 /Intern/Team1s
      FormatTeamName /Intern/Team2s 2 "f L"
      SetCfg /Intern/Team2 "" // Set Empty String
      CatCfg /Intern/Team2 /Intern/Team2s
      FormatTeamName /Intern/Team1s 1 "L"
      FormatTeamName /Intern/Team2s 2 "L"

Or be patient and wait for my next version ! :D

Re: scoreboard

PostPosted: 27 Oct 2011, 00:49
by rogerfed1
Hi, kersou how do you put the full names in the world tour with sb 7.1?
Thanks

Re: scoreboard

PostPosted: 27 Oct 2011, 04:10
by julian_weimer
hola, he instalado tu version v7.1 y cuando inicio el juego me aparece:

el programa encontro un error
en el archivo "Sistem.log".
¿deseas enviar este repore a ManaGames.com?

sabes alguna solucion??
muchas gracias y perdon por la molestia :)