26.10.2018, 17:08
Baixe essa include: https://github.com/Whitetigerswt/SAM...eolocation.inc
Coloque essa Include na pasta do seu servidor em: Pawno\Includes e cola lб..
Depois baixe a DataBase й coloque em ScriptFiles: https://github.com/Whitetigerswt/SAM...0Databases.zip
Coloque apenas os arquivos geoip e o geoip_city na pasta ScriptFiles
Tente isso, e ver se funcionar
Coloque essa Include na pasta do seu servidor em: Pawno\Includes e cola lб..
Depois baixe a DataBase й coloque em ScriptFiles: https://github.com/Whitetigerswt/SAM...0Databases.zip
Coloque apenas os arquivos geoip e o geoip_city na pasta ScriptFiles
PHP Code:
#include <a_samp>
#include <geolocation>
//OnPlayerConnect
new string[128], pNome[MAX_PLAYER_NAME];
GetPlayerName(playerid, pNome, sizeof(pNome));
new Pais[64], Cidade[64];
GetPlayerCountry(playerid, Pais, sizeof(Pais));
GetPlayerCity(playerid, Cidade, sizeof(Cidade));
format(string, sizeof(string), "%s (%i) entrou no servidor. Localizaзгo: '%s (%s) - Ping: %i'", pNome, playerid, Cidade, Pais, GetPlayerPing(playerid));
SendClientMessageToAll(0xFFFFFFFF, string);