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:
with:
Code:
void main()
{
Hack("ShowFps 1");
Sleep(200);
}
Code:
void main(){
if(!IsGameReadyForHook()){
Sleep(100);
Hack("ShowFps 1");
}
}
