Need help
#12

Hey SpiderWalk.

Here is /AdminDutyON and /AdminDutyOFF code:-

I have made by myself.

You must #include <zcmd>

Top of your fs.

pawn Код:
new AdminOnDuty[MAX_PLAYERS]
And here is the code:-

pawn Код:
CMD:admindutyon(playerid, params[])
{
    if(IsPlayerAdmin(playerid))
    if(AdminOnDuty[playerid] == 1) return SendClientMessage(playerid,0xAA3333AA, "You're already on Adminstrator duty, Type /AdminDutyOff to OFF your duty!");
    else
    {
    new pName[MAX_PLAYER_NAME];
    GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
    new string[128];
    AdminOnDuty[playerid] = 1;
    format(string,sizeof(string), "Adminstrator %s is now on Admin duty.", pName);
    SendClientMessageToAll(0x33CCFFAA, string);
    }
    else
    {
    SendClientMessage(playerid, 0xAA3333AA, "You're not an adminstrator to use this cmd");
    }
    return 1;
}

CMD:admindutyoff(playerid, params[])
{
    if(IsPlayerAdmin(playerid))
    if(AdminOnDuty[playerid] == 0) return SendClientMessage(playerid,0xAA3333AA, "You're already off Adminstrator Duty, Type /AdminDutyOn to ON your duty!");
    else
    {
    new pName[MAX_PLAYER_NAME];
    GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
    new string[128];
    AdminOnDuty[playerid] = 0;
    format(string,sizeof(string), "Adminstrator %s is no longer on Adminstrator duty.", pName);
    SendClientMessageToAll(0x33CCFFAA, string);
    }
    else
    {
    SendClientMessage(playerid, 0xAA3333AA, "You're not an adminstrator to use this cmd");
    }
    return 1;
}
You must be /Rcon (Password) to use this command, or you can change it to your admin level fs.



Well i hope this works.


Thanks.
Reply


Messages In This Thread
Need help - by SpiderWalk - 03.04.2011, 21:37
Re: Need help - by SpiderWalk - 03.04.2011, 21:39
Re: Need help - by Davz*|*Criss - 03.04.2011, 21:42
Re: Need help - by SpiderWalk - 03.04.2011, 21:44
Re: Need help - by Marricio - 03.04.2011, 21:45
Re: Need help - by Cameltoe - 03.04.2011, 21:45
Re: Need help - by SpiderWalk - 03.04.2011, 21:46
Re: Need help - by SpiderWalk - 03.04.2011, 21:48
Re: Need help - by SchurmanCQC - 03.04.2011, 21:50
Re: Need help - by Venice - 03.04.2011, 21:58
Re: Need help - by SpiderWalk - 03.04.2011, 22:05
Re: Need help - by Davz*|*Criss - 04.04.2011, 11:11
Re: Need help - by Gray - 04.04.2011, 11:21
Re: Need help - by SpiderWalk - 05.04.2011, 14:28
Re: Need help - by SpiderWalk - 05.04.2011, 14:33

Forum Jump:


Users browsing this thread: 1 Guest(s)