This is only suppose to print commands with alias and exec in them, it prints anything typed into the console.
Code:
public client_command(id)
{
new command[50]
read_argv(0,command,49)
get_user_name(id,name,33)
if(containi(command,"exec")) {
client_print(0,print_chat,"[FuPlug]:%s performed exec %s.",name,command)
}
}