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);
return 0;
}
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 0;
}
return 1;
}
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; }
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; }
Код:
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; } |