29.09.2013, 05:52
Olб, boa noite!
Estou com um problema para por TAG's em cima do nick de Admins e Vips.
Jб tentei das seguintes formas:
OnPlayerConnect
Ambas nгo aparece a TAG em cima do player, jб dei uma estudada no 3DTextLabel e no Attach3DTextLabel, mas nгo consegui resolver, alguйm poderia me ajudar?
Estou com um problema para por TAG's em cima do nick de Admins e Vips.
Jб tentei das seguintes formas:
OnPlayerConnect
PHP код:
for(new x=0; x < MAX_PLAYERS; x++)
{
if(PlayerInfo[x][pAdmin] >= 1)
{
label[x] = Create3DTextLabel("Administrador",0x008080FF,30.0,40.0,50.0,40.0,0);
Attach3DTextLabelToPlayer(label[x], playerid, 0.0, 0.0, 0.7);
}
if(PlayerInfo[x][pVip] >= 1)
{
label[x] = Create3DTextLabel("*** VIP ***",0x008080FF,30.0,40.0,50.0,40.0,0);
Attach3DTextLabelToPlayer(label[x], playerid, 0.0, 0.0, 0.7);
}
}
PHP код:
if(PlayerInfo[playerid][pAdmin] >= 1)
{
label[playerid] = Create3DTextLabel("Administrador",0x008080FF,30.0,40.0,50.0,40.0,0);
Attach3DTextLabelToPlayer(label[playerid], playerid, 0.0, 0.0, 0.7);
}
if(PlayerInfo[playerid][pVip] >= 1)
{
label[playerid] = Create3DTextLabel("*** VIP ***",0x008080FF,30.0,40.0,50.0,40.0,0);
Attach3DTextLabelToPlayer(label[playerid], playerid, 0.0, 0.0, 0.7);
}