Como Puedo Hacer Este Comando
#6

Es esto?
pawn Код:
if(strcmp(cmd, "/veh", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if (PlayerInfo[playerid][pAdmin] < 4)
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   No estas autorizado a usar ese comando!");
                return 1;
            }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USO: /veh [carid] [color1] [color2]");
                return 1;
            }
            new car;
            car = strval(tmp);
            if(car < 400 || car > 611) { SendClientMessage(playerid, COLOR_GREY, "   El numero de vehiclo solo puede estar entre 400 y 611 !"); return 1; }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USO: /veh [carid] [color1] [color2]");
                return 1;
            }
            new color1;
            color1 = strval(tmp);
            if(color1 < 0 || color1 > 126) { SendClientMessage(playerid, COLOR_GREY, "   El numero de la pintura solo puede estar entre 0 y 126!"); return 1; }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USO: /veh [carid] [color1] [color2]");
                return 1;
            }
            new color2;
            color2 = strval(tmp);
            if(color2 < 0 || color2 > 126) { SendClientMessage(playerid, COLOR_GREY, "   El numero de la pintura solo puede estar entre 0 y 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, 600000);
            CreatedCars[CreatedCar] = carid;
            CreatedCar ++;
            format(string, sizeof(string), "   Vehiculo %d spawneado.", carid);
            SendClientMessage(playerid, COLOR_GREY, string);
        }
        return 1;
    }
Versiуn Para RP
Reply


Messages In This Thread
Como Puedo Hacer Este Comando - by LSM_naxo_rap - 16.10.2010, 23:54
Re: Como Puedo Hacer Este Comando - by SeQualX - 17.10.2010, 03:18
Re: Como Puedo Hacer Este Comando - by TheChaoz - 17.10.2010, 04:04
Re: Como Puedo Hacer Este Comando - by SeQualX - 17.10.2010, 04:10
Re: Como Puedo Hacer Este Comando - by mamc_crazy - 17.10.2010, 04:23
Re: Como Puedo Hacer Este Comando - by SuperMarioRol - 17.10.2010, 11:48
Re: Como Puedo Hacer Este Comando - by LSM_naxo_rap - 17.10.2010, 13:56
Re: Como Puedo Hacer Este Comando - by SuperMarioRol - 17.10.2010, 15:33
Re: Como Puedo Hacer Este Comando - by cocolabush - 17.10.2010, 17:12
Re: Como Puedo Hacer Este Comando - by mamc_crazy - 17.10.2010, 19:46

Forum Jump:


Users browsing this thread: 2 Guest(s)