My pawno gives errors
#3

Quote:
Originally Posted by John.
Try it with this(taken from GF and edited for your needs):

pawn Код:
if(strcmp(cmd, "/veh", true) == 0)
    {
      if(IsPlayerConnected(playerid))
      {
        if (!IsPlayerAdmin(playerid))
            {
              SendClientMessage(playerid, COLOR_GRAD1, "You arent logged in as an Admin!");
              return 1;
            }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");
                return 1;
            }
            new car;
            car = strvalEx(tmp);
            if(car < 400 || car > 611) { SendClientMessage(playerid, COLOR_GREY, " Vehicle Number can't be below 400 or above 611 !"); return 1; }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");
                return 1;
            }
            new color1;
            color1 = strvalEx(tmp);
            if(color1 < 0 || color1 > 126) { SendClientMessage(playerid, COLOR_GREY, " Color Number can't be below 0 or above 126 !"); return 1; }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USAGE: /veh [carid] [color1] [color2]");
                return 1;
            }
            new color2;
            color2 = strvalEx(tmp);
            if(color2 < 0 || color2 > 126) { SendClientMessage(playerid, COLOR_GREY, " Color Number can't be below 0 or above 126 !"); return 1; }
            new Float:X,Float:Y,Float:Z;
            GetPlayerPos(playerid, X,Y,Z);
            new carid = CreateVehicle(car, X,Y,Z, 0.0, color1, color2, 60000);
            format(string, sizeof(string), " Vehicle %d spawned.", carid);
            SendClientMessage(playerid, COLOR_GREY, string);
        }
        return 1;
    }
Sorry for the indetention
that gave me even more errors in some way :S

Reply


Messages In This Thread
My pawno gives errors - by Sidney_J - 02.01.2009, 12:38
Re: My pawno gives errors - by -John- - 02.01.2009, 12:50
Re: My pawno gives errors - by Sidney_J - 02.01.2009, 13:03
Re: My pawno gives errors - by -John- - 02.01.2009, 13:09
Re: My pawno gives errors - by Zezombia - 02.01.2009, 13:17
Re: My pawno gives errors - by Sidney_J - 02.01.2009, 13:21
Re: My pawno gives errors - by -John- - 02.01.2009, 13:22
Re: My pawno gives errors - by Sidney_J - 02.01.2009, 13:26
Re: My pawno gives errors - by Zezombia - 02.01.2009, 13:27
Re: My pawno gives errors - by Sidney_J - 02.01.2009, 13:31

Forum Jump:


Users browsing this thread: 2 Guest(s)