Add qsave/qload commands

This commit is contained in:
mittorn 2018-10-21 15:12:28 +07:00
parent 6b7ebc770b
commit 7286f61fd9
2 changed files with 11 additions and 1 deletions

View File

@ -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 );

View File

@ -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 )