14.11.2011, 17:10
Did you really try this script:
?
Does the script compile ?
pawn Код:
CMD:country(playerid,params[])
{
new player1, string[128],dsname[MAX_PLAYER_NAME];
if(sscanf(params,"i",player1)) return SendClientMessage(playerid, red, "USAGE: /Country [playerid]");
GetPlayerName(player1, dsname, sizeof(dsname));
format(string, sizeof(string), "** %s [ID: %s] Country: %s", dsname,player1,GetPlayerCountryName(player1));
SendClientMessage(playerid,green, string);
return 1;
}
Does the script compile ?