08.11.2016, 10:38
(
Последний раз редактировалось ZiGGi; 15.12.2017 в 14:35.
)
zvehcomp
AboutUseful functions for vehicle components. Very useful for creating tuning systems.
Functions
PHP код:
GetVehicleComponentTypeId(name[]);
GetVehicleComponentTypeName(type, name[], size = sizeof(name));
GetVehicleCompatibleTypes(model, array[ZVEH_MAX_COMPONENT_TYPES], &array_size);
GetVehicleComponentName(componentid, cname[], size = sizeof(cname));
GetVehicleCompatibleUpgrades(model, array[ZVEH_MAX_COMPONENTS], &array_size);
IsVehicleUpgradeCompatible(model, componentid);
IsVehicleHaveUpgrades(model);
Directive | Default value | Can be redefined |
ZVEH_INVALID_COMPONENT_ID | 255 | no |
ZVEH_MAX_COMPONENTS | 48 | no |
ZVEH_MAX_COMPONENT_NAME | 64 | no |
ZVEH_MAX_COMPONENT_TYPES | 14 | no |
ZVEH_MAX_COMPONENT_TYPE_NAME | 16 | no |
List of all compatible component types:
PHP код:
new
compatible_types[ZVEH_MAX_COMPONENT_TYPES],
compatible_types_count;
GetVehicleCompatibleTypes(400, compatible_types, compatible_types_count);
for (new i = 0; i < compatible_types_count; i++) {
printf("%d", compatible_types[i]);
}
- GitHub download page: https://github.com/Open-GTO/zvehcomp/releases
- Wiki (English, Russian): https://github.com/Open-GTO/zvehcomp/wiki