25.12.2015, 12:14
Quote:
Код:
CMD:aod(playerid, params[]) { if(pInfo[playerid][Admin] < 1) return NotAdminMSG(playerid); if(pInfo[playerid][AOD] == 0) { 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); } else if(pInfo[playerid][AOD] == 1) { 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 1; } |
SilverStand, your script (without testing) is good, but lucamsx's one is more simple.
Thanks both!
