27.05.2018, 20:51
Como faзo pra Por tag de adm ou vip txtdraw emcima da cabeзa do player
e como faзo pra saber qual e a variavel do meu ADM e ou VIP
e como faзo pra saber qual e a variavel do meu ADM e ou VIP
pAdmin[playerid]
Player[playerid][Admin]
pInfo[playerid][pAdmin]
pInfo[playerid][Vip]
Player[playerid][pVip]
pInfo[playerid][Vipdea]
//News
new Text3D:PlayerLabel[MAX_PLAYERS];
//OnPlayerSpawn
public OnPlayerSpawn(playerid)
{
if(PlayerInfo[playerid][pAdmin] == 3)
{
Delete3DTextLabel(PlayerLabel[playerid]);
PlayerLabel[playerid] = Create3DTextLabel("Administrador(a)", 0x00FFFFAA, 30.0, 40.0, 50.0, 100.0, 0);
Attach3DTextLabelToPlayer(PlayerLabel[playerid], playerid, 0.0, 0.0, 0.3);
}
if(PlayerInfo[playerid][pVip] == 1)
{
Delete3DTextLabel(PlayerLabel[playerid]);
PlayerLabel[playerid] = Create3DTextLabel("Player VIP", 0x00FF00AA, 30.0, 40.0, 50.0, 100.0, 0);
Attach3DTextLabelToPlayer(PlayerLabel[playerid], playerid, 0.0, 0.0, 0.3);
}
return 1;
}
SetTimer("AtualizarChatBubble", 1000, true);
forward AtualizarChatBubble();
public AtualizarChatBubble()
{
for(new x=0; x < MAX_PLAYERS; x++)
{
if(pAdmin[x] == 5) //troca o pAdmin por sua variavel de admin
{
SetPlayerChatBubble(x, "Desenvolvedor(a)", 0x328E0AAA, 100.0, 100000);
}
if(pAdmin[x] == 4) //troca o pAdmin por sua variavel de admin
{
SetPlayerChatBubble(x, "Administrador(a)-Geral", 0xc32407AA, 100.0, 100000);
}
if(pAdmin[x] == 3) //troca o pAdmin por sua variavel de admin
{
SetPlayerChatBubble(x, "Administrador(a)", 0x008bceA, 100.0, 100000);
}
if(pAdmin[x] == 2) //troca o pAdmin por sua variavel de admin
{
SetPlayerChatBubble(x, "Moderador", 0xFF8C00AA, 100.0, 100000);
}
if(pAdmin[x] == 1) //troca o pAdmin por sua variavel de admin
{
SetPlayerChatBubble(x, "Ajudante", 0xFFFF00AA, 100.0, 100000);
}
if(vip[x] == 1) //troca o vip por sua variavel de vip
{
SetPlayerChatBubble(x, "VIP", 0xD600FFAA, 100.0, 100000);
}
}
}