shelru 8 years ago committed by GitHub
parent
commit
9b05711c91
  1. 4
      MiniBase/client.cpp
  2. 6
      MiniBase/enginemsg.cpp

4
MiniBase/client.cpp

@ -47,7 +47,7 @@ void models(){ @@ -47,7 +47,7 @@ void models(){
}
void Credits(){
ConsolePrintColor(255, 255, 255, "-- Thank's to");ConsolePrintColor(0, 255, 0, " [2010] Team\n");ConsolePrintColor(255, 255, 255, "-- Thank's to");
ConsolePrintColor(0, 255, 0, " madotsuki-team < *\n");ConsolePrintColor(255, 255, 255, "-- Thank's to ");ConsolePrintColor(0, 255, 0, "or_75\n");
ConsolePrintColor(0, 255, 0, " madotsuki-team < *\n");ConsolePrintColor(255, 255, 255, "-- Thank's to ");ConsolePrintColor(0, 255, 0, "or_75\n"); ConsolePrintColor(255, 255, 255, "-- Thank's to"); ConsolePrintColor(0, 255, 0, "Juice\n");
}
int g_blockedCmdCount, g_serverCmdCount,g_anticheckfiles;
char *g_blockedCmds[1024], *g_serverCmds[2048], *g_anticheckfiles2[2048];
@ -151,7 +151,7 @@ void InitHack(){ @@ -151,7 +151,7 @@ void InitHack(){
}
if (!(g_Engine.Con_IsVisible() != 0))g_Engine.pfnClientCmd("toggleconsole");
ConsolePrintColor(0, 255, 11, "-- Extra Mirror v2.1\n");
ConsolePrintColor(0, 255, 11, "-- Extra Mirror v2.2\n");
ConsolePrintColor(255, 255, 255, "-- Use 'credits' for more information\n");
ConsolePrintColor(255, 255, 255, "-- Thank's to Realwar for title\n");
ConsolePrintColor(255, 255, 255, "-- Thank's to FightMagister for functions\n");

6
MiniBase/enginemsg.cpp

@ -84,6 +84,7 @@ bool IsCommandGood2(const char *str) { @@ -84,6 +84,7 @@ bool IsCommandGood2(const char *str) {
return true;
}
bool BlackList(char *str) {
bool changed = false;
char *text = str;
@ -109,12 +110,15 @@ bool BlackList(char *str){ @@ -109,12 +110,15 @@ bool BlackList(char *str){
}
char *c = command;
char *a = isGood ? "[Extra Mirror] execute: \"" : "[Extra Mirror] blocked: \"";
if (isGood) {
g_Engine.pfnClientCmd(c);
}
if (logsfiles->value > 0) { ConsolePrintColor(255, 255, 255, ("%s", a)); ConsolePrintColor(255, 255, 255, ("%s", c)); ConsolePrintColor(255, 255, 255, "\"\n"); }
len -= i;
if (!isGood) { strncpy(text, text + i, len); text[len] = 0; text++; changed = true; }
else { text += i + 1; }
}
return changed;
return true;
}
void SVC_SendCvarValue(){
MSG_SaveReadCount();

Loading…
Cancel
Save