16.12.2015, 22:57
(
Последний раз редактировалось BykiLler; 16.12.2015 в 23:00.
Причина: edit :d
)
Voce ta usando Rcon
ou enum
Rcon:
enum:
ou enumRcon:
Quote:
|
new string1[5]; if(IsPlayerAdmin(playerid)){ format(string1, sizeof(string1), "ADMIN"); new Text3D:label2 = Create3DTextLabel(string1, 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0); Attach3DTextLabelToPlayer(label2, playerid, 0.0, 0.0, 0.7); }else{ } |
Quote:
|
enum pInfo { admin, }; new PlayerInfo[MAX_PLAYERS][pInfo]; // em onplayerconect ou spawn if(PlayerInfo[playerid] [admin] >= 1){ new string1[5]; format(string1, sizeof(string1), "ADMIN"); new Text3D:label2 = Create3DTextLabel(string1, 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0); Attach3DTextLabelToPlayer(label2, playerid, 0.0, 0.0, 0.7); }else{ } |

