From 2c05286fe855aa6ecde53063d0e47d84718c2648 Mon Sep 17 00:00:00 2001 From: Daniel Simoes Date: Wed, 12 Jun 2002 22:32:24 +0000 Subject: [PATCH] Even better way to improve the Cvar Anti-Cheat System --- reaction/cgame/cg_local.h | 5 ++++- reaction/cgame/cg_main.c | 10 +++++++--- reaction/cgame/cg_servercmds.c | 7 +++++-- reaction/game/bg_public.h | 6 ++++-- reaction/game/g_client.c | 10 +++++++--- reaction/game/g_cmds.c | 10 ++++++++++ 6 files changed, 37 insertions(+), 11 deletions(-) diff --git a/reaction/cgame/cg_local.h b/reaction/cgame/cg_local.h index 615c8c76..e14c6dcb 100644 --- a/reaction/cgame/cg_local.h +++ b/reaction/cgame/cg_local.h @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.92 2002/06/12 22:31:59 slicer +// Even better way to improve the Cvar Anti-Cheat System +// // Revision 1.91 2002/06/12 15:30:24 slicer // Improved and fixed the Anti-Cheat System // @@ -1668,7 +1671,7 @@ extern vmCvar_t cg_RQ3_crosshairColorA; // JBravo: cvar for tkok popups extern vmCvar_t cg_RQ3_tkokAutoPopup; // Slicer: for the Anti-Cheat System -extern vmCvar_t cg_RQ3_Auth; +//extern vmCvar_t cg_RQ3_Auth; //Elder: SSG unique sensitivities extern vmCvar_t cg_RQ3_ssgSensitivityAuto; extern vmCvar_t cg_RQ3_ssgSensitivity2x; diff --git a/reaction/cgame/cg_main.c b/reaction/cgame/cg_main.c index 79e63542..f3dafb3f 100644 --- a/reaction/cgame/cg_main.c +++ b/reaction/cgame/cg_main.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.82 2002/06/12 22:31:59 slicer +// Even better way to improve the Cvar Anti-Cheat System +// // Revision 1.81 2002/06/12 15:30:24 slicer // Improved and fixed the Anti-Cheat System // @@ -322,7 +325,7 @@ vmCvar_t cg_RQ3_crosshairColorA; // JBravo: cvar for tkok popup vmCvar_t cg_RQ3_tkokAutoPopup; // Slicer: for the Anti-Cheat System -vmCvar_t cg_RQ3_Auth; +//vmCvar_t cg_RQ3_Auth; //Elder: SSG unique sensitivities vmCvar_t cg_RQ3_ssgSensitivityAuto; vmCvar_t cg_RQ3_ssgSensitivity2x; @@ -529,7 +532,7 @@ static cvarTable_t cvarTable[] = { // bk001129 //{ &cg_RQ3_drawWeapon, "cg_RQ3_drawWeapon", "2", CVAR_ARCHIVE }, { &cg_RQ3_glasstime, "cg_RQ3_glasstime", "0", CVAR_ARCHIVE }, // Slicer: for the Anti-Cheat System - { &cg_RQ3_Auth, "cg_RQ3_Auth", "0", CVAR_USERINFO | CVAR_ROM }, + //{ &cg_RQ3_Auth, "cg_RQ3_Auth", "0", CVAR_USERINFO | CVAR_ROM }, // Elder: added { &cg_RQ3_flash, "cg_RQ3_flash", "1", CVAR_ARCHIVE }, // NiceAss: added @@ -2621,7 +2624,8 @@ void CG_Init( int serverMessageNum, int serverCommandSequence, int clientNum ) { trap_S_ClearLoopingSounds( qtrue ); //Slicer: For the anti-cheat system - trap_Cvar_Set("cg_RQ3_Auth","0"); + //trap_Cvar_Set("cg_RQ3_Auth","0"); + trap_SendClientCommand("SendCheatCvars"); } /* diff --git a/reaction/cgame/cg_servercmds.c b/reaction/cgame/cg_servercmds.c index 669a3c5f..dfa1cf90 100644 --- a/reaction/cgame/cg_servercmds.c +++ b/reaction/cgame/cg_servercmds.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.50 2002/06/12 22:31:59 slicer +// Even better way to improve the Cvar Anti-Cheat System +// // Revision 1.49 2002/06/12 15:30:24 slicer // Improved and fixed the Anti-Cheat System // @@ -1280,8 +1283,8 @@ void CG_RQ3_Cmd () { CG_SetTeamPlayers(); break;*/ //Slicer: for the anti-cheat system - case AUTH: - trap_Cvar_Set("cg_RQ3_auth","1"); + // case AUTH: + // trap_Cvar_Set("cg_RQ3_auth","1"); case SELECTPISTOL: if (cg.snap) { switch (cg.snap->ps.weapon) { diff --git a/reaction/game/bg_public.h b/reaction/game/bg_public.h index 824f6796..d0f61055 100644 --- a/reaction/game/bg_public.h +++ b/reaction/game/bg_public.h @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.78 2002/06/12 22:32:24 slicer +// Even better way to improve the Cvar Anti-Cheat System +// // Revision 1.77 2002/06/12 15:29:53 slicer // Improved and fixed the Anti-Cheat System // @@ -312,8 +315,7 @@ enum { RADIO, STARTDEMO, STOPDEMO, - SCREENSHOT, - AUTH + SCREENSHOT }; //Elder: sound events for EV_RQ3_SOUND typedef enum { diff --git a/reaction/game/g_client.c b/reaction/game/g_client.c index 925e49d7..e5ea5350 100644 --- a/reaction/game/g_client.c +++ b/reaction/game/g_client.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.91 2002/06/12 22:32:24 slicer +// Even better way to improve the Cvar Anti-Cheat System +// // Revision 1.90 2002/06/12 15:29:53 slicer // Improved and fixed the Anti-Cheat System // @@ -1107,7 +1110,7 @@ void ClientUserinfoChanged( int clientNum ) { //Slicer: for the anti-cheat system - s = Info_ValueForKey( userinfo, "cg_RQ3_auth" ); +/* s = Info_ValueForKey( userinfo, "cg_RQ3_auth" ); if(!atoi(s)) { //Blaze: Send cheat cvars to client @@ -1121,13 +1124,14 @@ void ClientUserinfoChanged( int clientNum ) { /* G_Printf("Sending changed userinfo\n"); Info_SetValueForKey( userinfo, "cg_RQ3_auth", "1" ); // register the userinfo - trap_SetUserinfo( clientNum, userinfo );*/ + trap_SetUserinfo( clientNum, userinfo ); trap_SendServerCommand( clientNum, va("rq3_cmd %i",AUTH)); } - + } + */ /* NOTE: all client side now diff --git a/reaction/game/g_cmds.c b/reaction/game/g_cmds.c index e8708f0c..4ac7b37d 100644 --- a/reaction/game/g_cmds.c +++ b/reaction/game/g_cmds.c @@ -5,6 +5,9 @@ //----------------------------------------------------------------------------- // // $Log$ +// Revision 1.127 2002/06/12 22:32:24 slicer +// Even better way to improve the Cvar Anti-Cheat System +// // Revision 1.126 2002/06/10 23:32:03 slicer // Tweaked the weapon queuing // @@ -3048,6 +3051,13 @@ void ClientCommand( int clientNum ) { { Cmd_PlayerStats_f( ent ); } + else if(Q_stricmp (cmd, "SendCheatCvars")==0) { + if (!G_SendCheatVars(clientNum)) + { + Com_Printf("Error loading cvar cfg\n"); + //return "Error_loading_cvar_cfg"; + } + } else trap_SendServerCommand( clientNum, va("print \"unknown cmd %s\n\"", cmd ) );