05.02.2014, 13:12
pawn Код:
/*Topo*/
new Text3D:texto;
/*OnPlayerSpawn*/
if(pAdmin[playerid] == 1){
new Float:X,Float:Y;
texto = Create3DTextLabel("[Administrador]",COR,0.0,0.0,0.0,20.0,0,0);
Attach3DTextLabelToPlayer(texto,playerid,X,Y,0.75);
}
/*OnPlayerDisconnect*/
if(pAdmin[playerid] == 1){
Delete3DTextLabel(texto);
}