Vehicle Creation
#10

pawn Код:
else if(!strcmp(option, "vehicle", true, 7))
{
        if(sscanf(params, "is[32]iiii", idx, option, veh, vehid, col1, col2)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /oedit [orgslot] vehicle [vehiclelot] [vehiclemodel] [color1] [color2]");
        if(veh < 1 || veh > 5) return SendClientMessage(playerid, COLOR_GREY, "Vehicle slots are between 1 and 5.");
        veh = veh-1;
        if(FamInfo[idx][fVehType][veh])
        {
            FamInfo[idx][fVehType][veh] = 0;
            FamInfo[idx][fVehCoX][veh] = 0;
            FamInfo[idx][fVehCoY][veh] = 0;
            FamInfo[idx][fVehCoZ][veh] = 0;
            FamInfo[idx][fVehRot][veh] = 0;
            FamInfo[idx][fVehCol1][veh] = 0;
            FamInfo[idx][fVehCol2][veh] = 0;
            DestroyVehicle(FamInfo[idx][fVeh][veh]);
        }
        if(vehid)
        {
            FamInfo[idx][fVehType][veh] = vehid;
            GetPlayerPos(playerid, FamInfo[idx][fVehCoX][veh], FamInfo[idx][fVehCoY][veh], FamInfo[idx][fVehCoZ][veh]);
            GetPlayerFacingAngle(playerid, FamInfo[idx][fVehRot][veh]);
            FamInfo[idx][fVehCol1][veh] = col1;
            FamInfo[idx][fVehCol2][veh] = col2;
            FamInfo[idx][fVeh][veh] = CreateVehicle(vehid, FamInfo[idx][fVehCoX][veh], FamInfo[idx][fVehCoY][veh], FamInfo[idx][fVehCoZ][veh], FamInfo[idx][fVehRot][veh], FamInfo[idx][fVehCol1][veh], FamInfo[idx][fVehCol2][veh], 1200);
            ChangeVehicleColor(FamInfo[idx][fVeh][veh], FamInfo[idx][fVehCol1][veh], FamInfo[idx][fVehCol2][veh]);
            Fam[FamInfo[idx][fVeh][veh]] = idx;
            format(string, sizeof(string), "AdmWarn: %s has set organisation %d's vehicle slot %d to ID %d.", RPN(playerid), idx, veh+1, vehid);
            SendAdminMessage(COLOR_DARKRED, 1, string);
        }
        else SendClientMessage(playerid, COLOR_GREY, "Invalid option.");
        return 1;
}
Replace ur cmd with this.
Reply


Messages In This Thread
Vehicle Creation - by Sweez - 27.03.2014, 12:20
Re: Vehicle Creation - by SiraBots - 27.03.2014, 12:22
Re: Vehicle Creation - by Dokins - 27.03.2014, 12:30
Re: Vehicle Creation - by Sweez - 27.03.2014, 13:22
Re: Vehicle Creation - by ScriptFohLife - 27.03.2014, 13:50
Re: Vehicle Creation - by Konstantinos - 27.03.2014, 14:01
Re: Vehicle Creation - by BroZeus - 27.03.2014, 14:10
Re: Vehicle Creation - by Sweez - 27.03.2014, 14:58
Re: Vehicle Creation - by BroZeus - 27.03.2014, 15:03
Re: Vehicle Creation - by Hanuman - 27.03.2014, 16:08

Forum Jump:


Users browsing this thread: 1 Guest(s)