mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-20 12:36:05 +08:00
32 lines
833 B
C++
32 lines
833 B
C++
![]() |
//========= Copyright <20> 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" );
|