15.07.2014, 09:25
Код:
C:\Users\Matt\Desktop\SAMP\FG[4.0].pwn(8462) : error 035: argument type mismatch (argument 2)
pawn Код:
public GEOIP_HTTPREQUEST(playerid, response_code, location[]) // The GEO-IP Callback.
{
new string[128];
if(response_code == 200) {
if(pInfo[playerid][Admin] == 1) return SendClientMessage(playerid, COLOR_RED, EACMD);
{
new Pname[64];
GetPlayerName(playerid,Pname,sizeof(Pname));
format(string, sizeof(string), "Country: %s joined the server from %s",Pname,location);
SendClientMessage(playerid, COL_GREY, string);
}
return 1;
}