also what can be the condition to not log duplicate names and authid if the player retries..currently this function sits in client_putinserver
Code:
public logplayers(id)
{
new szAuthID[32], szName[32];
get_user_name(id, szName, 31);
get_user_authid(id, szAuthID, charsmax(szAuthID));
log_to_file(g_szFileName, "Name %s | AuthID %s | ", szName, szAuthID)
}