18.05.2013, 15:44
Faz isso:
Em VariavelDePolicial coloque sua variavel, simples.
pawn Код:
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(VariavelDePolicial(i))
{
if(WantedPoints[i] > 0 && WantedPoints[i] != 1337)
{
Delete3DTextLabel(Procurado[i]);
format(string, sizeof(string), "** Procurado **\nNнvel: %d",WantedPoints[i]);
Procurado[i] = Create3DTextLabel(string,0x33ccffFF,0.0, 0.0, 0.0, 15.0, 0, 0);
Attach3DTextLabelToPlayer(Procurado[i], i, 0.0, 0.0, 0.7);
}
}
}
}
