21.06.2015, 09:38
add on top of script this:
and replace command with this:
Код:
new Text3D:labela[MAX_PLAYERS];
Код:
CMD:aduty(playerid, paramas[]) { if(adutys[playerid] == 1) { if(pInfo[playerid][Admin] >= 1) { SetPlayerColor(playerid, 0xAA3333AA); // Yellow colour hex SetPlayerHealth(playerid, 9999999); SetPlayerArmour(playerid, 9999999); adutys[playerid] = 0; labela[playerid] = Create3DTextLabel("Admin On Duty", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0); Attach3DTextLabelToPlayer(labela[playerid], playerid, 0.0, 0.0, 0.7); } else SendClientMessage(playerid, 0xAA3333AA, "You must be admin to access this command!"); } else if(adutys[playerid] == 0) { if(pInfo[playerid][Admin] >= 1) { SetPlayerColor(playerid, 0xFFFFFFAA); SetPlayerHealth(playerid, 100); SetPlayerArmour(playerid, 0); Delete3DTextLabel(labela[playerid]); adutys[playerid] = 1; } else SendClientMessage(playerid, 0xAA3333AA, "You must be admin to access this command!"); } return 1; }