//No Inicio do GM Adicione
forward TextProcu();
em OnGameModeInit adicione um Timer
public OnGameModeInit()
{
SetTimer("TextChatBubble" 1000, true);
return 1;
}
public TextChatBubble()
{
for(new i=0; i<MAX_PLAYERS; i++)
{
if(PlayerInfo[i][pAdmin] == 1342)//Level do Administrador
{
SetPlayerChatBubble(i,"Administrador", COLOR_RED,100.0, 1000);
}
if(PlayerInfo[i][pVIP] > 0)//Level do VIP
{
SetPlayerChatBubble(i,"VIP", COLOR_RED,100.0, 1000);
}
if(PlayerInfo[i][pHelper] > 0)//Level do Helper
{
SetPlayerChatBubble(i,"Helper", COLOR_RED,100.0, 1000);
}
}
}