/fine admin command.
#4

This should work mate

pawn Код:
new FineMoney[MAX_PLAYERS];
pawn Код:
}
if(strcmp(cmd, "/fine", true) == 0)
{
if(PlayerInfo[playerid][pAdmin] >= 5)
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /fine [playerid/PartOfName] [price] [reason]");
return 1;
}
giveplayerid = ReturnUser(tmp);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /fine [playerid/PartOfName] [price] [reason]");
return 1;
}
moneys = strval(tmp);
if(moneys < 1 || moneys > 99999 ) { SendClientMessage(playerid, COLOR_GREY, "  fine price can't be below 1 or higher then 99999 !"); return 1; }
if(IsPlayerConnected(giveplayerid))
{
 if(giveplayerid != INVALID_PLAYER_ID)
{
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
                        {
                            idx++;
                        }
                        new offset = idx;
                        new result[64];
                        while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
                        {
                            result[idx - offset] = cmdtext[idx];
                            idx++;
                        }
                        result[idx - offset] = EOS;
                        if(!strlen(result))
                        {
                            SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /fine [playerid/PartOfName] [price] [reason]");
                            return 1;
                        }
                        format(string, sizeof(string), "* You gave %s a fine costing $%d, reason: %s", giveplayer, moneys, (result));
                        SendClientMessage(playerid,COLOR_LIGHTRED, string);
                        format(string, sizeof(string), "* ADMIN: %s has given you a fine costing $%d, reason: %s", sendername, moneys, (result));
                        SendClientMessageToAll(COLOR_LIGHTRED, string);
                        FineMoney[giveplayerid] = moneys;
                        SafeGivePlayerMoney(giveplayerid, - moneys);
                        return 1;
                                    }
            }
            else
            {
              SendClientMessage(playerid, COLOR_GREY, "  That player is Offline !");
              return 1;
            }
        }
        return 1;
Reply


Messages In This Thread
/fine admin command. - by Ace_Menace - 28.06.2009, 08:12
Re: /fine admin command. - by shady91 - 28.06.2009, 08:33
Re: /fine admin command. - by Ignas1337 - 28.06.2009, 08:47
Re: /fine admin command. - by shady91 - 29.06.2009, 09:11

Forum Jump:


Users browsing this thread: 2 Guest(s)