public OnClientPutInServer(client)
{
if (!GetConVarInt(g_hConnectAnnounce))
return
new String:ip[32]
new String:country[46]
new String:name[32]
new String:authid[35]
GetClientAuthString(client,authid,34)
GetClientIP(client, ip, 19)
GetClientName(client, name,31)
GeoipCountry(ip, country, sizeof(country))
PrintToChatAll("\x01\x04%s (\x01%s\x04) connected from %s",name,authid,country)
}