Author Topic: End of map scoreboard or time between maps ?  (Read 3564 times)

Offline Gumby

  • Rank: Private
  • *
  • Posts: 14
End of map scoreboard or time between maps ?
« on: November 14, 2009, 08:11:07 am »
On my server I have not been able to extend the time the end of map scoreboard shows.  It simply goes to the next map in the rotation or maybe blips on the screen but there is no time to actually see it.

I've tried to find it in the configs but I cant find it.

Mod version X5 v 2.5

Offline SiCDude4Him

  • Rank: Private
  • *
  • Posts: 79
    • http://www.thunderinglegionclan.com
Re: End of map scoreboard or time between maps ?
« Reply #1 on: November 14, 2009, 10:50:47 am »
YOu most likely do not have the updated config that fixed this. I had the same problem on my snipers server until Chiblu & Joker found the file and fixed it. Just ask them.

Offline Gumby

  • Rank: Private
  • *
  • Posts: 14
Re: End of map scoreboard or time between maps ?
« Reply #2 on: November 14, 2009, 11:53:47 am »
Hmm ok ty  I've been searching for a couple weeks for this.  

Ty very much for your reply

Offline Joker{eXtreme}

  • Rank: Private
  • *
  • Posts: 6108
    • http://www.mycallofduty.com
Re: End of map scoreboard or time between maps ?
« Reply #3 on: November 14, 2009, 02:11:52 pm »
config/mapcontrol.cfg

//******************************************************************************
// Intermission scoreboard time  //Longer Intermission is needed to Create Custom Classes
//******************************************************************************
set scr_intermission_time "12"

Offline SiCDude4Him

  • Rank: Private
  • *
  • Posts: 79
    • http://www.thunderinglegionclan.com
Re: End of map scoreboard or time between maps ?
« Reply #4 on: November 14, 2009, 03:03:39 pm »
Joker, it's one of the script files that is set funky. Same thing that was wrong with mine.

Offline Gumby

  • Rank: Private
  • *
  • Posts: 14
Re: End of map scoreboard or time between maps ?
« Reply #5 on: November 14, 2009, 04:01:07 pm »
Yep because I made the change and it still acts the same.

TY SiCDude4Him for replying because I think you know exactly what I need to do or find out how to change.

Offline Oswald

  • Rank: Private
  • *
  • Posts: 24
    • http://ogoclan.com
Re: End of map scoreboard or time between maps ?
« Reply #6 on: December 06, 2009, 06:04:03 pm »
I am having the same problem. Any solution?

Offline Gumby

  • Rank: Private
  • *
  • Posts: 14
Re: End of map scoreboard or time between maps ?
« Reply #7 on: December 07, 2009, 12:01:02 am »
I never got a response and switched the mod...hopefully by next version that will be fixed,but no I never figured it out.

Offline Oswald

  • Rank: Private
  • *
  • Posts: 24
    • http://ogoclan.com
Re: End of map scoreboard or time between maps ?
« Reply #8 on: December 08, 2009, 04:18:31 pm »
Anyone?

Offline PatmanSan

  • Administrator
  • Rank: Private
  • *****
  • Posts: 2527
Re: End of map scoreboard or time between maps ?
« Reply #9 on: December 08, 2009, 06:00:17 pm »
maps\mp\gametypes\_globallogic.gsc

//   wait getDvarFloat( "scr_intermission_time" );

Remove the //


Make sure you set scr_intermission_time in mapcontrol.cfg. The one in server.cfg is overwritten by it.

Offline Oswald

  • Rank: Private
  • *
  • Posts: 24
    • http://ogoclan.com
Re: End of map scoreboard or time between maps ?
« Reply #10 on: December 08, 2009, 08:34:12 pm »
Thanks Pat, works!!!

Offline Grmm

  • Rank: Private
  • *
  • Posts: 46
    • http://www.nomercygamers.net
Re: End of map scoreboard or time between maps ?
« Reply #11 on: March 27, 2010, 11:18:56 pm »
Quote from: "PatmanSan";p="31463"
maps\mp\gametypes\_globallogic.gsc

//   wait getDvarFloat( "scr_intermission_time" );

Remove the //


Make sure you set scr_intermission_time in mapcontrol.cfg. The one in server.cfg is overwritten by it.

My load out time is 35 seconds and nothing I do has any effect on it.  I've tried set scr_intermission_time "15", but no luck.  This thread and Pat's response looks like it may be the answer, but I don't understand what I need to do.  Can you explain pleease?

Offline PatmanSan

  • Administrator
  • Rank: Private
  • *****
  • Posts: 2527
Re: End of map scoreboard or time between maps ?
« Reply #12 on: March 28, 2010, 02:50:56 am »
- FTP into your gameserver.
- Go to your X5 mod folder
- Get a copy of: maps\mp\gametypes\_globallogic.gsc
- Open the file in your favourite text editor
- Search for this line:

// wait getDvarFloat( "scr_intermission_time" );

- Remove the // in front of that line
- Save the file
- FTP the file back to the gameserver. Same location, so overwrite
- Restart the server

Offline Grmm

  • Rank: Private
  • *
  • Posts: 46
    • http://www.nomercygamers.net
Re: End of map scoreboard or time between maps ?
« Reply #13 on: March 28, 2010, 07:59:21 am »
Thanks for responding Pat.  I forgot t mention I'm working with X4, but I found the file you're talking about right where you said it would be so it must be the same idea.  Anyway,  I checked it out and the // is not present.  Here's my line....

 logString( "game ended" );
   wait (getDvarFloat( "scr_intermission_time" ) * level.fps_multiplier );
   exitLevel( false );
}


I found another place just up from that line that looked interesting, would this have anything to do with anything?

if ( getDvar( "scr_intermission_time" ) == "" )
      setDvar( "scr_intermission_time", 30.0 );

Offline PatmanSan

  • Administrator
  • Rank: Private
  • *****
  • Posts: 2527
Re: End of map scoreboard or time between maps ?
« Reply #14 on: March 28, 2010, 08:57:37 am »
What happens if you change the intermission time in config\mapcontrol.cfg?

//******************************************************************************
// Intermission scoreboard time  //Longer Intermission is needed to Create Custom Classes
//******************************************************************************
set scr_intermission_time "30"

Set to 30 by default. Set it to anything you like.
Restart the server after changing this