07.06.2012, 05:41
The above is also incorrect.
Just fix the forum's auto indentation when you paste.
pawn Код:
COMMAND:hduty(playerid, params[])
{
if(PlayerInfo[playerid][pHelper] >= 1)
{
if(HelperDuty[playerid] == 1)
{
format(string, sizeof(string), "[Helper] %s (ID:%d) is now an off duty Helper", GetPlayerNameEx(playerid),playerid);
HelperMessage(COLOR_TESTERDUTY,string);
SetPlayerColor(playerid,COLOR_WHITE);
HelperDuty[playerid] = 0;
if(CopOnDuty[playerid] == 1)
{
SetPlayerArmour(playerid,100);
SetPlayerColor(playerid,0x8c8cfeff);
}
else if(MedicOnDuty[playerid] == 1)
{
SetPlayerColor(playerid,0xfe8281ff);
}
else
{
SetPlayerColor(playerid,COLOR_WHITE);
}
}
else
{
format(string, sizeof(string), "[Helper] %s (ID:%d) is now an on duty Helper", GetPlayerNameEx(playerid),playerid);
HelperMessage(COLOR_TESTERDUTY,string);
HelperDuty[playerid] = 1;
SetPlayerColor(playerid,COLOR_TESTERDUTY);
}
}
else
{
SendClientMessage(playerid, COLOR_LIGHTRED, "WARNING: You do not have access to this command.");
}
return 1;
}