31/12/2021 02:35
Faz o seguinte então:
Crie uma booleana para definir quem tem a frase e quem não tem.
new bool:TemFraseVip[MAX_PLAYERS];
Depois mude a condicional para:
Dessa forma, creio que irá funcionar. Lembre-se de colocar TemFraseVip[playerid] = true no /frase.
Crie uma booleana para definir quem tem a frase e quem não tem.
new bool:TemFraseVip[MAX_PLAYERS];
Depois mude a condicional para:
Código:
if(ContaPlayer[playerid][VipLevel] != 0 && TemFraseVip[playerid]) //FRASE VIP SÓCIO
{
format(String, sizeof(String), "{FFFFFF}O {abaeb2}%s {FFFFFF}%s {32CD32}Está Online > {FFFFFF}( {A9A9A9}%s {FFFFFF}) ({A9A9A9}%d/50{FFFFFF})", CategoriaVip(playerid), Nome(playerid), ContaPlayer[playerid][Frase_Vip], ConnectedPlayers());
SendClientMessageToAll(0xFF444499, String);
} else if(ContaPlayer[playerid][VipLevel] != 0 && !TemFraseVip[playerid]){ //VIP SEM FRASE
format(String, sizeof(String), "{FFFFFF}O {abaeb2}%s {FFFFFF}%s {32CD32}Está Online ({A9A9A9}%d/50{FFFFFF})", CategoriaVip(playerid), Nome(playerid), ContaPlayer[playerid][Frase_Vip], ConnectedPlayers());
SendClientMessageToAll(0xFF444499, String);
} else if(ContaPlayer[playerid][VipLevel] == 0) { //FRASE PADRÃO PLAYER
format(String, sizeof(String), "{FFFFFF}%s (%d) {7E6FAE}Conectou-se no servidor {FFFFFF}( {7E6FAE}%d/50{FFFFFF} )", Nome(playerid), playerid, ConnectedPlayers());
SendClientMessageToAll(0xFF444499, String);
}
Dessa forma, creio que irá funcionar. Lembre-se de colocar TemFraseVip[playerid] = true no /frase.
Discente de Sistemas de Informação no Centro Federal de Ensino Tecnológico(CEFET/RJ)
Programador SA-MP desde 2012
Programador SA-MP desde 2012
Não envie dúvidas por inbox, crie um tópico. Sua dúvida pode ser a dúvida de outro alguém, e seu tópico ajudará outras pessoas no futuro.