17.12.2013, 04:09
pawn Код:
public Textadm(playerid)
{
for(new i=0; i<MAX_PLAYERS; i++)
{
new string[288];
if(Getadmtrampando[playerid] == 1)
{
new Text3D:label1 = Create3DTextLabel("Trabalhando", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(label1, playerid, 0.0, 0.0, 0.7);
}
else if(Getadmtrampando[playerid] == 0)
{
new Text3D:label2 = Create3DTextLabel("Jogando", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(label2, playerid, 0.0, 0.0, 0.7);
}
}
}