15.10.2011, 22:00
I added the GetPlayerCountry.... Well Everything works .. i guess code wize But when a player Connect it says this player has Joined From PrivateIP I looked up the files on geoip it said update them i thought i did it keeps saying privateip Anyone have any ideal what im doing wrong or I didnt update it correctly..
pawn Код:
new file[256];
new name[MAX_PLAYER_NAME], country[MAX_COUNTRY_NAME], string[128];
GetPlayerName(playerid, name, sizeof(name));
format(file, sizeof(file), ARS_ACCOUNTS, name);
country = GetPlayerCountryName(playerid);
format(string, sizeof(string), "%s has joined the server. From %s ",name,country);
SendClientMessageToAll(YELLOW2, string);