04.12.2010, 13:00
Tira Uma Baze nгo sei se funзa
pawn Код:
if(strcmp(cmd, "/911", true) == 0)
{
tmp = strtok(cmdtext, idx);
new ID;
ID = strval(tmp);
new Nome[MAX_PLAYER_NAME];
GetPlayerName(ID, Nome, sizeof(Nome));
for(new i = 0; i<MAX_PLAYERS; i++)
{
if(IsPlayerPolicial(i))//Aqui vai sau variaзгo de polical OBS troque o playerid por i
{
new String[128];
format(String, sizeof(String), "Busque O Player %s ID:%d E Prenda-o", Nome, ID);
SendClientMessage(i,COLORAKI,String);
new Float:X, Float:Y, Float:Z;
GetPlayerPos(ID, X, Y, Z);
SetPlayerCheckpoint(i, X, Y, Z, 3.0);
}
}
}