mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-04 00:23:25 +08:00
33 lines
803 B
C++
33 lines
803 B
C++
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#include "cbase.h"
|
|
#include "hl2mp_cvars.h"
|
|
|
|
|
|
|
|
// Restart the round
|
|
ConVar mp_restartround(
|
|
"mp_restartround",
|
|
"0",
|
|
FCVAR_GAMEDLL,
|
|
"If non-zero, game will restart in the specified number of seconds" );
|
|
|
|
// Ready restart
|
|
ConVar mp_readyrestart(
|
|
"mp_readyrestart",
|
|
"0",
|
|
FCVAR_GAMEDLL,
|
|
"If non-zero, game will restart once each player gives the ready signal" );
|
|
|
|
// Ready signal
|
|
ConVar mp_ready_signal(
|
|
"mp_ready_signal",
|
|
"ready",
|
|
FCVAR_GAMEDLL,
|
|
"Text that each player must speak for the match to begin" );
|