Page 1 of 1

How can I set the default game duration?

Posted: 15 January 2021, 16:41
by Vikti
Is it possible to change the default game length for "Normal" mode? By default it's 3 minutes, and I could not find any related option in `gameinfos.inc.php`.

Re: How can I set the default game duration?

Posted: 15 January 2021, 16:50
by RicardoRix
// Time in second add to a player when "giveExtraTime" is called (speed profile = fast)
'fast_additional_time' => 30,

// Time in second add to a player when "giveExtraTime" is called (speed profile = medium)
'medium_additional_time' => 40,

// Time in second add to a player when "giveExtraTime" is called (speed profile = slow)
'slow_additional_time' => 50,

Re: How can I set the default game duration?

Posted: 15 January 2021, 18:00
by Vikti
These are the additional(!) times, I'd like to set the default, starting time.

Re: How can I set the default game duration?

Posted: 15 January 2021, 19:34
by RicardoRix
I assume it's a multiple of those values.