Need Help

Posts 1618 of 18 · Page 2 of 2
wow, first off you are not even useing the "IsGameReadyForHook" and are just doing the hack right off, most like cShell hasn't even loaded, first part is replace:
Code:
void main()
{

Hack("ShowFps 1");

        Sleep(200);
	}
with:
Code:
void main(){
    if(!IsGameReadyForHook()){
        Sleep(100);
        Hack("ShowFps 1");
    }
}
Quote Originally Posted by DreadKyller View Post
wow, first off you are not even useing the "IsGameReadyForHook" and are just doing the hack right off, most like cShell hasn't even loaded, first part is replace:
[php]void main()
{

Hack("ShowFps 1");

Sleep(200);
}[/code]
with:
[code]void main(){
if(!IsGameReadyForHook()){
Sleep(100);
Hack("ShowFps 1");
}
}[/php]
He's talking about how to bypass it, but I guess that did help him.
I never fully understood what bypassing is, I hear it used a lot, but what exactly is it? I mean I know what it means, but... can't find anything on it anywhere on the web.
Posts 1618 of 18 · Page 2 of 2

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?