12.04.2017, 19:27
Preciso de um chat bubble que fica escrito "Administrador" emcima da cabeзa
meu servidor й de mata mata se puderem ajudar fico grato
meu servidor й de mata mata se puderem ajudar fico grato
forward AtualizarChatBubble(); //Coloque junto as suas forwards
SetTimer("AtualizarChatBubble", 1000, true); //Coloque em ongamemodeinit
public AtualizarChatBubble()
{
for(new x=0; x < MAX_PLAYERS; x++)
{
if Sua variбvel de administrador
{
SetPlayerChatBubble(x, "Administrador", -1, 100.0, 10000); // -1 = cor .
}
}
}
public admin() for(new I = 0; I < MAX_PLAYERS; I ++) if(IsPlayerConnected(I) && PlayerInfo[I][Level] >= 1) SetPlayerChatBubble(I,"Administrador(a)", 0xFF0000FF, 50.0, 1100);
// -------------------------------------------------------------------------------------------- MANDAR PARA GM
forward admin();
public OnGameModeInit()
{
SetTimer("admin", 1000, true);
return 1;
}
pawn Код:
|