/ticket command
#1

have anyone a /ticket command?
i have [GM]the godfather but they say: you are not a Cop!
but i am a cop!
can anyone make a /ticket command for me or fix mine ticket system
Reply
#2

just change the gTeam[playerid] == 2 with IsACop(playerid))
Reply
#3

how i can make people a cop then?
Reply
#4

pawn Код:
if(strcmp(cmd, "/ticket", true) == 0)
    {
      if(IsPlayerConnected(playerid))
      {
        if(gTeam[playerid] != 2)
            {
              SendClientMessage(playerid, COLOR_GREY, "  You are not a Cop!");
              return 1;
            }
        if(OnDuty[playerid] != 1 && PlayerInfo[playerid][pMember] == 1)
            {
              SendClientMessage(playerid, COLOR_GREY, "  You are not on Duty!");
              return 1;
            }
        tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /ticket [playerid/PartOfName] [price] [reason]");
                return 1;
            }
            giveplayerid = ReturnUser(tmp);
      tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /ticket [playerid/PartOfName] [price] [reason]");
                return 1;
            }
            moneys = strval(tmp);
            if(moneys < 1 || moneys > 99999) { SendClientMessage(playerid, COLOR_GREY, "  Ticket Money can't be below 1 or higher then 99999 !"); return 1; }
            if(IsPlayerConnected(giveplayerid))
            {
              if(giveplayerid != INVALID_PLAYER_ID)
              {
                if (ProxDetectorS(8.0, playerid, giveplayerid))
                    {
                      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: /ticket [playerid/PartOfName] [price] [reason]");
                            return 1;
                        }
                        format(string, sizeof(string), "* You gave %s a Ticket costing $%d, reason: %s", giveplayer, moneys, (result));
                        SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
                        format(string, sizeof(string), "* Officer %s has given you a Ticket costing $%d, reason: %s", sendername, moneys, (result));
                        SendClientMessage(giveplayerid, COLOR_LIGHTBLUE, string);
                        SendClientMessage(giveplayerid, COLOR_LIGHTBLUE, "* Type /accept ticket, to accept it.");
                        TicketOffer[giveplayerid] = playerid;
                        TicketMoney[giveplayerid] = moneys;
                        return 1;
                    }
                    else
                    {
                        SendClientMessage(playerid, COLOR_GREY, "  That player is not near you !");
                        return 1;
                    }
                }
            }
            else
            {
              SendClientMessage(playerid, COLOR_GREY, "  That player is Offline !");
              return 1;
            }
        }
        return 1;
    }
Enjoy
Reply
#5

i have that ticket system but when i give a ticket there stand:
you are not a Cop!
but i am the leader of team 2!
Reply
#6

i've just told you

change the gTeam[playerid] == 2 with if(IsACop(playerid))

to make a cop use : /makeleader <name> <faction>

Avaible Factions:

1 - Cop
2 - F.B.I
3 - National Guard
4 - Ambulance
5 - La cosa nostra
6 - Yakuza
7 - The mayor
8 - Hitman
9 - News reporter
10 - Taxi cab
11 - Drive License
Reply
#7

This forum has rules.
You aren't allowed to create topics regrading to GF in scripting dicussion.
They need to be in the GF thread only.

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)