16.10.2014, 04:14
Also, I believe that there's more details than GetVehicleModelInfo could provide. I've got all these data into MySQL database so if you're trying to retrieve any model information, you can get it quickly. There are a total of 7431 rows. All credits goes to JernejL though, I just managed to wrap all these data to a database. 
Some examples of query:
Table name : l_vdimvdum
Download - https://github.com/Lordzy/VehicleDim...mmyDB/releases

Some examples of query:
Код:
SELECT `X`,`Y`,`Z` FROM `l_vdimvdum` WHERE `model`=520 AND `index_name`='!SIZE' Will get you the X, Y and Z coordinate of '!SIZE' index of the vehicle model 520.
Код:
SELECT `index_name` FROM `l_vdimvdum` WHERE `model` = 520 Will list all the index_name of the vehicle model : 520
Field name | model | index_name | X | Y | Z |
Field type | SMALLINT(3) - UNSIGNED | VARCHAR(20) | float | float | float |