24.04.2018, 19:07
Can you explain again what you're trying to achieve?
If you want to store each trailer in ID_Trailer you should do something like this:
If you want to store each trailer in ID_Trailer you should do something like this:
PHP код:
new ID_trailer[10] // put the number of trailers you will create inside the brackets
And then: ID_trailer[0] = CreateVehicle(591 ...);
ID_trailer[1] = CreateVehicle(591...);

