05.07.2010, 18:23
PHP код:
format(String, sizeof(String), "(ID:%d | Ping: %d | IP: %s | Country: %s)",playerid,GetPlayerPing(playerid),IP,Country);
ID - Okay
Ping - it always says 128 or 256.While my ping is actually 10-50
IP - it shows my only 1 number - usually 56
Country - while im actually from Israel,it always telling me something else (Italy,Norway,Spain,Turkey etc..) and im not using any proxy or something
Full script:
PHP код:
new Country[256],Name[256],IP[256];
CleanChat(playerid);
GetPlayerName(playerid, Name, sizeof(Name));
GetPlayerCountry(playerid,Country);
GetPlayerIp(playerid, IP, sizeof(IP));
format(String, sizeof(String), "(ID:%d | Ping: %d | IP: %s | Country: %s)",playerid,GetPlayerPing(playerid),IP,Country);
SendClientMessage(playerid, COLOR_J, String);