12.09.2012, 03:23
Mas o deste tуpico https://sampforum.blast.hk/showthread.php?tid=334784 nгo e sу para admin logado na Rcon ?
pawn Код:
//Adicione esta forward junto as outras forwards '-'
forward AtualizarChatBubble();
//Adicione este settimer na public OnGameModeInit
SetTimer("AtualizarChatBubble", 1000, true);
// Callback ._.
public AtualizarChatBubble()
{
for(new x=0; x < MAX_PLAYERS; x++)
{
if(IsPlayerAdmin(x))
{
SetPlayerChatBubble(x, "Administrador", 0xFF0000AA, 100.0, 10000); // 0xFF0000AA = Cor // 0xFF0000AA = Cor Vermelho .
//Vocк pode alterar o texto " Adminstrador " pelo texto a sua escolha. ;)
}
}
}