mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-04-05 01:11:16 +00:00
Even better way to improve the Cvar Anti-Cheat System
This commit is contained in:
parent
c0631d931a
commit
2c05286fe8
6 changed files with 37 additions and 11 deletions
|
@ -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;
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 ) );
|
||||
|
|
Loading…
Reference in a new issue