25.07.2012, 00:08
pawn Код:
//topo
new Text3D:label[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
label[playerid] = Create3DTextLabel("Olб sou admin do Servidor\nPosso ajudar ?", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
return 1;
}
public OnPlayerUpdate(playerid)
{
if(Informacoes[playerid][PlayerAdmin] >= 1)
{
Attach3DTextLabelToPlayer(label[playerid], playerid, 0.0, 0.0, 2.0);
}
return 1;
}