02.02.2012, 19:27
Estб correto?
pawn Код:
CMD:procurados(playerid,params[])
{
new msg[128],nick[64];
for(new i=0; i <MAX_PLAYERS; i++)
{
if(procurados[i] >=1)
{
SendClientMessage(playerid, COLOR_RED, " Lista de Procurados: ");
GetPlayerName(playerid,procurado,sizeof(procurado));
format(msg,sizeof(msg),"%s",nick);
SendClientMessage(playerid, COLOR_BLUE,msg);
}
else
{
SendClientMessage(playerid, COLOR_RED, "[INFO] Nгo existe qualquer jogar com nнvel de procurado.");
}
return 1;
}
return 1;
}