18.07.2014, 00:21
auguem pode ajudar ae ?
//Topo GM
forward ChatBubble();
//OnGameModeInit
SetTimer("ChatBubble", 1000, true);
public AtualizarChatBubble()
{
for(new x=0; x < MAX_PLAYERS; x++)
{
//Aqui coloque sua variбvel de admin
//ex a minha e: if(PlayerInfo[playerid][pAdmin] == 0)
{
SetPlayerChatBubble(x, "[ADM]", COR_AQUI, 100.0, 10000);
}
}
}
//Onde tem COR_AQUI vocк coloca a cor que quiser, definida no seu GM.
//Colocando sua variбvel de admin ali, nгo precisa ficar logando na rcon.
public OnPlayerUpdate(playerid)
{
if(IsPlayerConnected(playerid) && gPlayerLogged[playerid])
{
if(GetTickCount() - gpTimes[playerid] >= 1000)
{
if(PlayerInfo[playerid][pAdmin] >= 1) //Esse >= quer dizer que se voce foir admin level 1 ou mais
{
SetPlayerChatBubble(playerid,"[Administrador]",0xFFFF00AA,100.0,10000);//Esse 100.0 e a distancia em 'metros' no qual sera por exemplo: 30.0 e uma distancia boa.
}