25.12.2015, 12:03
I make this for you, but not tested xD
Код:
CMD:aod(playerid, params[]) { if(pInfo[playerid][Admin] < 1) return NotAdminMSG(playerid); if(GetPVarInt(playerid, "PlayerOnDuty")) { SetPHealth(playerid, 100); pInfo[playerid][AOD] = 0; SCM(playerid, COLOR_WHITE, ""WORD_ADMIN"You are off duty now!"); Delete3DTextLabel(pInfo[playerid][AODLabel]); CheckPlayerColor(playerid); return 0; } else { new pworld; pworld = GetPlayerVirtualWorld(playerid); pInfo[playerid][AODLabel] = Create3DTextLabel("Admin On Duty!", COLOR_ADMIN, 0.000, 0.000, 0.000, 15.0, pworld, 0); Attach3DTextLabelToPlayer(pInfo[playerid][AODLabel], playerid, 0.0, 0.0, 0.7); SetPHealth(playerid, 99999); pInfo[playerid][AOD] = 1; SCM(playerid, COLOR_WHITE, ""WORD_ADMIN"You are on duty now!"); SetPlayerColor(playerid, COLOR_ADMIN); SetPVarInt(playerid, "PlayerOnDuty"); return 0; } return 1; }