14.05.2018, 00:46
Amigo, vocк precisa decidir entre SetPlayerChatBubble ou Create3DTextLabel + Attach3DTextLabelToPlayer
Pois se usar os dois juntos, vai ficar piscando.
Muito provavelmente vocк possui o sistema de tag(ou tнtulo) em Create3DTextLabel + Attach3DTextLabelToPlayer e quer setar o SetPlayerChatBubble juntos. Que nгo pode!
Essa й a ъnica possibilidade.
Pois se usar os dois juntos, vai ficar piscando.
Muito provavelmente vocк possui o sistema de tag(ou tнtulo) em Create3DTextLabel + Attach3DTextLabelToPlayer e quer setar o SetPlayerChatBubble juntos. Que nгo pode!
PHP Code:
SetTimer("TextProcu", 3000, true);
public TextProcu()
{
const
String[126];
for(new i = 0, j = GetPlayerPoolSize(); i <= j; i++)
{
if(!IsPlayerConnected(i)) continue;
if(GetPlayerWantedLevel(i) > 0)
{
format(string, sizeof string, "||-||PROCURADO||[%d]", GetPlayerWantedLevel(i));
SetPlayerChatBubble(i, string, COLOR_RED, 100.0, 3000);
//-> Exemplo:
if(VarUsandoTag[playerid]){
RemoverTag(playerid);
//.. Coloca pra destruir o Attach3DTextLabelToPlayer
}
}
}
}