08.08.2010, 19:43
Eu jб verifiquei sem todos os FS's, e continua. Tipo com o comando /presos, quando tem alguem preso, ele diz o nick e o ID e pronto. se nгo tiver ninguem preso, ele apareceescrito Lista de presos e em baixo escrito comando invйlido.
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
new index;
new cmd[256];
cmd = psf_strtok(cmdtext, index);
if (strcmp(cmdtext, "/presos", true)==0){
new string[256];
SendClientMessage(playerid, COLOR_YELLOW, "~~~~~~ Lista de presos ~~~~~~");
for(new i=0; i<MAX_PLAYERS; i++){
if(Presos[i]){
format(string, sizeof(string), "%d: %s", i, PlayerName(i));
SendClientMessage(i, COLOR_YELLOW, string);
SendClientMessage(playerid, COLOR_YELLOW, "~~~~~~ Lista de presos ~~~~~~");
return 1;
}
}
}
return SendClientMessage(playerid,COLOR_RED ,"[ERRO] Este comando nгo existe aqui!.");
}