SA-MP Forums Archive
Vehicle Plates - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Vehicle Plates (/showthread.php?tid=351251)



Vehicle Plates - Luis- - 15.06.2012

Its now working.


Respuesta: Vehicle Plates - CidadeNovaRP - 15.06.2012

This?
pawn Код:
new platepm, plategov, plateamb, platedmv, platetaxi;
            for(new v = 0; v < MAX_CARS; v++)
            {
                if(IsCopCar(v))
                {
                    platepm++;
                    format(string, sizeof(string), "LSPD %d", platepm);
                    SetVehicleNumberPlate(v, string);
                    print(string);
                }
                if(IsGovCar(v))
                {
                    format(string, sizeof(string), "GOV %d", plategov);
                    SetVehicleNumberPlate(v, string);
                    print(string);
                    plategov++;
                }
                if(IsAmbulance(v))
                {
                    format(string, sizeof(string), "EMS %d", plateamb);
                    SetVehicleNumberPlate(v, string);
                    print(string);
                    plateamb++;
                }
                if(IsDMVCar(v))
                {
                    format(string, sizeof(string), "DMV %d", platedmv);
                    SetVehicleNumberPlate(v, string);
                    print(string);
                    platedmv++;
                }
                if(IsATaxi(v))
                {
                    format(string, sizeof(string), "Taxi %d", platetaxi);
                    SetVehicleNumberPlate(v, string);
                    print(string);
                    platetaxi++;
                }
            }



Re: Vehicle Plates - Luis- - 15.06.2012

Cheers, it worked.