Arma 3
Not enough ratings
Vehicle_Customizer
   
Award
Favorite
Favorited
Unfavorite
Data Type: Mod, Server
Mod Type: Mechanics
File Size
Posted
69.645 KB
19 Feb, 2016 @ 9:28am
1 Change Note ( view )

Subscribe to download
Vehicle_Customizer

Description
Vehicle Customizer

To be customized the vehicle must be within 5 meters of the following class :

Air Vehicles

"Land_TentHangar_V1_F"
"Land_Hangar_F"

Other Vehicles

"Land_i_Garage_V1_F"
"Land_i_Garage_V2_F"
"Land_CarService_F"
"Land_i_Shed_Ind_F"


If you to add the Customize action to a vehicle when creating it from a script use this line :

init="this addAction [""Customize"",""_this call mjqc_fnc_VCCustomize"",nil,0,false,true,"""",""(_target distance _this < 5) && (_target call mjqc_fnc_VCCondition)""];";


If you to add the Customize action to a vehicle when creating it in the Editor use this line :

Vehicle INIT field :

this addAction ["Customize","_this call CustomizeVehicle",nil,0,false,true,"","(_target distance _this < 5) && (_target call CustomizeCondition)"];

If you want to add the feature to an Exile server use these instructions :

- Add the following block at the end of the "class Car >> class Actions" of the mission config.cpp file

class Customize: ExileAbstractAction
{
title = "Customize";
condition = "(call ExileClient_object_vehicle_interaction_show) && (call mjqc_fnc_VCCondition)";
action = "_this call mjqc_fnc_VCCustomize";
};

- Also place the same block in the "Class Tank" and "Class Air" if you want those type to be customizable.

If you want to call the command directly use this line :

_this call mjqc_fnc_VCCustomize

*_this being the vehicle object.



// Created By Patrix87
// Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)
12 Comments
juanjosemoreno199014 29 Nov, 2021 @ 3:39pm 
What a shame, I imagined being able to customize the weapons for the EFT style missions, being able to change grips, butts, slanted sights, well anyway thank you very much for answering
Patrix  [author] 29 Nov, 2021 @ 3:29pm 
@juanjosemoreno199014 ... This plugin was posted 5 years ago. I'm not going to make anything related to that anymore ...
juanjosemoreno199014 29 Nov, 2021 @ 3:12pm 
Hello, Very good, I would like to ask a question a little from ignorance, could you make a menu similar to this but to customize weapons? An Escape From Tarkov style?
Karistus 26 Jul, 2017 @ 2:41pm 
i did but thanks for the heads up, it's sad that this no longer works
Patrix  [author] 25 Jul, 2017 @ 8:51pm 
Well it did work at some point.

And you also need to read the instructions.
Karistus 25 Jul, 2017 @ 7:24pm 
won't work, i have tried many times
Sven 30 Jun, 2016 @ 8:28am 
ou okay thank u
Patrix  [author] 30 Jun, 2016 @ 8:19am 
@svenhappenhofer you need to initialize the menu with the instructions above. Once the init code is in place if you're parked in a garage it should be part of the scroll wheel menu.
Sven 30 Jun, 2016 @ 5:37am 
i dont understand how i can open that menü
Two-Snecc 20 Jun, 2016 @ 11:25am 
thx