1
0
mirror of https://github.com/r4sas/ExtraMirror synced 2025-01-31 17:04:19 +00:00
This commit is contained in:
shelru 2016-09-27 07:41:48 +03:00 committed by GitHub
parent 0515b0b36c
commit b80862ce69
3 changed files with 5 additions and 5 deletions

View File

@ -151,7 +151,7 @@ void InitHack(){
} }
if (!(g_Engine.Con_IsVisible() != 0))g_Engine.pfnClientCmd("toggleconsole"); if (!(g_Engine.Con_IsVisible() != 0))g_Engine.pfnClientCmd("toggleconsole");
ConsolePrintColor(0, 255, 11, "-- Extra Mirror v1.8x\n"); ConsolePrintColor(0, 255, 11, "-- Extra Mirror v1.9\n");
ConsolePrintColor(255, 255, 255, "-- Use 'credits' for more information\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 Realwar for title\n");
ConsolePrintColor(255, 255, 255, "-- Thank's to FightMagister for functions\n"); ConsolePrintColor(255, 255, 255, "-- Thank's to FightMagister for functions\n");

View File

@ -79,7 +79,7 @@ ofstream logfile;
char* BaseDir; char* BaseDir;
DWORD WINAPI CheatEntry( LPVOID lpThreadParameter ); DWORD WINAPI CheatEntry( LPVOID lpThreadParameter );
void ModuleLoaded();
DWORD WINAPI ProcessReload( LPVOID lpThreadParameter ) DWORD WINAPI ProcessReload( LPVOID lpThreadParameter )
{ {
while ( true ) while ( true )
@ -94,7 +94,7 @@ DWORD WINAPI ProcessReload( LPVOID lpThreadParameter )
else else
{ {
CreateThread( 0 , 0 , CheatEntry , 0 , 0 , 0 ); CreateThread( 0 , 0 , CheatEntry , 0 , 0 , 0 );
ModuleLoaded();
} }
Sleep( 100 ); Sleep( 100 );

View File

@ -243,7 +243,7 @@ DWORD cOffset::FindEventMsgBase()
{ {
DWORD PatternAddress = FindPattern(OFF_EVENT_MSG_BASE, HwBase, HwEnd, 0); DWORD PatternAddress = FindPattern(OFF_EVENT_MSG_BASE, HwBase, HwEnd, 0);
DWORD ReferenAddress; DWORD ReferenAddress;
if (equali(BuildInfo.GameVersion,"4554")){ if (equali(BuildInfo.GameVersion,"1.1.2.6")){
ReferenAddress = FindReference(HwBase, HwEnd, PatternAddress) - 0x06; ReferenAddress = FindReference(HwBase, HwEnd, PatternAddress) - 0x06;
} }
else { ReferenAddress = FindReference(HwBase, HwEnd, PatternAddress) - 0x07; } else { ReferenAddress = FindReference(HwBase, HwEnd, PatternAddress) - 0x07; }