This wiki is archived and useful information is being migrated to the main bzflag.org website

bz_resumeCountdown

From BZFlagWiki
Jump to: navigation, search

void bz_resumeCountdown (const char* resumedBy)


Resumes the countdown that is currently paused.

Parameters:
resumedBy  -  The name of the player resuming the countdown. Note that this value does not have to be a callsign of a player in the server, it can be any string.


Example[edit]

Resume the countdown if a player unpauses, saying the player that unpaused decided to unpause the countdown also.

case bz_ePlayerPausedEvent:{
	if (!bz_isCountDownActive() && !((bz_PlayerPausedEventData_V1*)eventData)->pause) {
		bz_resumeCountdown(bz_getPlayerCallsign(((bz_PlayerPausedEventData_V1*)eventData)->playerID));
	}
}break;