mirror of
https://github.com/YGGverse/hlsdk-portable.git
synced 2025-03-13 05:51:19 +00:00
Add qsave/qload commands
This commit is contained in:
parent
6b7ebc770b
commit
7286f61fd9
@ -897,7 +897,7 @@ bool COOP_ClientCommand( edict_t *pEntity )
|
||||
else if( FStrEq( pcmd, "loadcheckpoint") )
|
||||
{
|
||||
int i = atoi(CMD_ARGV(1));
|
||||
if( i > 4 )
|
||||
if( i > 4 || i < 0 )
|
||||
return false;
|
||||
if( pPlayer->gravgunmod_data.m_state != STATE_SPAWNED || pPlayer->pev->health < 1 )
|
||||
UTIL_SpawnPlayer( pPlayer );
|
||||
|
@ -2056,6 +2056,16 @@ bool GGM_ClientCommand( CBasePlayer *pPlayer, const char *pCmd )
|
||||
GGM_ChangePassword_f(pPlayer);
|
||||
return true;
|
||||
}
|
||||
else if( FStrEq(pCmd, "qsave") )
|
||||
{
|
||||
GGM_SaveState( pPlayer );
|
||||
return true;
|
||||
}
|
||||
else if( FStrEq(pCmd, "qload") )
|
||||
{
|
||||
GGM_RestoreState( pPlayer );
|
||||
return true;
|
||||
}
|
||||
else if( FStrEq(pCmd, "ent_import" ) )
|
||||
{
|
||||
if( !pPlayer->gravgunmod_data.pState || !pPlayer->gravgunmod_data.pState->fRegistered )
|
||||
|
Loading…
x
Reference in New Issue
Block a user