Red face[HELP] Why this error?

Posts 113 of 13 · Page 1 of 1
[HELP] Why this error?
Hello everyone, I have a problem!
I did a hack, when I try to use it, this error occurs:
CrossFire error, Send Report? OMG!!

Look the source :

#include <windows.h>
#include <iostream>

using namespace std;

void __cdecl PTC(char* command ) {
DWORD dwCShell = (DWORD)GetModuleHandleA("CShell.dll");
if( dwCShell != NULL )
{
DWORD *LTC = ( DWORD* )( (dwCShell +
0x2E39C8) );
void* Console = ( void* )*( DWORD* )( *LTC + 0x1F8 );
_asm
{
push command;
call Console;
add esp, 4;
}
}
}

DWORD WINAPI hello(LPVOID) {
while(GetModuleHandleA("CShell.dll") == NULL ) {
Sleep(120);
}

bool whiteplayers = true;
bool nowall = true;
bool nosky = true;
bool nosmoke = true;

for(;; ) {
__asm pushad;

if(GetAsyncKeyState(VK_F2)&1) {
whiteplayers = !whiteplayers;
}
if(GetAsyncKeyState(VK_F3)&1) {
nowall = !nowall;
}
if(GetAsyncKeyState(VK_F4)&1) {
nosky = !nosky;
}
if(GetAsyncKeyState(VK_F5)&1) {
nosmoke = !nosmoke;
}
if (whiteplayers) {
PTC("TextureModels 1");
}
else {
PTC("TextureModels 0");
}
if (nowall) {
PTC("DrawWorld 1");
}
else {
PTC("DrawWorld 0");
}
if (nosky) {
PTC("DrawSky 1");
}
else {
PTC("DrawSky 0");
}
if (nosmoke) {
PTC("DrawParticles 1");
}
else {
PTC("DrawParticles 0");
}
Sleep(120);
__asm popad;
}
}
BOOL WINAPI DllMain ( HMODULE hDll, DWORD dwReason, LPVOID lpReserved )
{
DisableThreadLibraryCalls(hDll);
if ( dwReason == DLL_PROCESS_ATTACH )
{
MessageBoxA(0, "By youname", "Injected", 0);
CreateThread(NULL, NULL,hello, NULL, NULL, NULL);
}
return TRUE;
}



Because the red one have a wrong combination.
In other hacks I've always used this source, I just modified the LTC =(
i have this same problem and no one could help me? If you figure it out please notify me. Working on fixing this!
I got this problem as well. Im using a player glow hack with nothing else but that, and its not working.
Quote Originally Posted by aanthonyz View Post
I got this problem as well. Im using a player glow hack with nothing else but that, and its not working.
Are you not aware of the the recent Lt Client Change? Get the new LTclient and you will be good. The new Lt Client is found in the Cshell.dll.
Isnt that the updated LTC, the one in red?
shit, we're all fucked!
The LTC is updated!
Quote Originally Posted by gustavo5066 View Post
shit, we're all fucked!
The LTC is updated!
Gotta be more positive kid. Why don't you do some research and find it your self. Isn't that hard. If no one can get it ill try.
Quote Originally Posted by NOOBJr View Post
Gotta be more positive kid. Why don't you do some research and find it your self. Isn't that hard. If no one can get it ill try.
Dude, please create a tutorial to help me, and help many people too
I bypassed that just go edit some there and add bypass I made my own.
Maybe the source code has been patched ;x
Posts 113 of 13 · Page 1 of 1

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?