day of defeat reinforcement time Created 6 years ago2017-03-31 21:07:17 UTC by hfc hfc

Created 6 years ago2017-03-31 21:07:17 UTC by hfc hfc

Posted 6 years ago2017-03-31 21:07:17 UTC Post #334179
how to change it? i cant find anything. are there a command for it. and ill be happy if you post another useful commands for making a dod sv.
Posted 6 years ago2017-04-03 09:04:06 UTC Post #334215
i looked all dod console commands from the net. i searched from google and there is nothing bout how to change reinforcement time. and there is no option at the server create scrren. isnt this possible? nobody knows at the twhl? :(
Posted 6 years ago2017-04-03 09:26:34 UTC Post #334216
There is an entity called "info_doddetect" that has 2 keyvalues that affect this:
"detect_allies_respawnfactor": Multiplier for Allies respawn time.
"detect_axis_respawnfactor": Multiplier for Axis respawn time.

The respawn time is determined by the number of players on the team:
[quote]
result = 6.0;
if ( playersOnTeam > 2 )
{
  result = 8.0;
  if ( playersOnTeam > 5 )
  {
    result = 10.0;
    if ( playersOnTeam > 7 )
    {
      result = 11.0;
      if ( playersOnTeam > 9 )
      {
        result = 12.0;
        if ( playersOnTeam > 11 )
        {
          result = 13.0;
          if ( playersOnTeam > 13 )
            result = 14.0;
        }
      }
    }
  }
}
[/quote]

The time is then multiplied by the factor to get the final time: result = result * respawnFactor.

See this page for more information about this entity: http://www.dodplugins.net/forums/cmps_index.php?page=verc&ent=info_doddetect&game=dod
Posted 6 years ago2017-04-08 13:50:28 UTC Post #334277
thanks you for your reply. this explains everything. :)
You must be logged in to post a response.