Code:
public scan(id)
{
id -= 912651
new name[32];
get_user_name(id,name,31);
if(is_user_alive(id))
{
if(CurFps[id] > get_pcvar_num(cvar_Fps))
{
client_print(0,print_chat,"%s - Scan Status: %d FPS", name, CurFps[id])
}
}
if(CurFps[id] > get_pcvar_num(cvar_Fps))
{
user_kill(id)
}
client_print(0,print_chat,"[Developer] %s slayed for playing with %i FPS",name,CurFps[id]);
}
}
why the braces are not matching ?
Quote:
|
Its spamming the first client_print .. and after the task complete spamming the last client_print
|
remove the client print if you don't want
Why do you need scan function if you are detecting in the prethink itself ?
Also why do you need engine and fakemeta both ?