09.10.2010, 20:34
Exprementa
pawn Код:
if(strcmp(cmd, "/procurar", true) == 0)
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, 0xFF0000AA, "USO: /procurar [ID] [Motivo] [Qtd Estrelas]");
return 1;
}
new ID;
ID = strval(tmp);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, 0xFF0000AA, "USO: /procurar [ID] [Motivo] [Qtd Estrelas]");
return 1;
}
new Quantidade;
Quantidade = strval(tmp);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, 0xFF0000AA, "USO: /procurar [ID] [Motivo] [Qtd Estrelas]");
return 1;
}
new Motivo;
Motivo = strval(tmp);
tmp = strtok(cmdtext, idx);
new String[256];
new Nome[MAX_PLAYER_NAME];
GetPlayerName(playerid, Nome, sizeof(Nome));
format(String, sizeof(String), "O Administrador %s Clocou-Lhe %d Niveis De Procurados Motivo: %s", Nome, Quantidade, Motivo);
SendClientMessage(ID,0x00FF00AA,String);
SetPlayerWantedLevel(ID, Quantidade);
return 1;
}