TDBGaming 121 Report post Posted July 7, 2016 I am considering adding CUP vehicles to my server. Would i need to add each version of the vehicle to the trader or would i be able to add one and the rest to the vehicle custom trader? For example, there are 14 versions of the Golf. Could i add CUP_C_Golf4_random_Civ to vehicle trader and rest to vehicle custom so people could change how it looks when they wish. Spoiler CUP_C_Golf4_red_Civ CUP_C_Golf4_black_Civ CUP_C_Golf4_yellow_Civ CUP_C_Golf4_blue_Civ CUP_C_Golf4_white_Civ CUP_C_Golf4_green_Civ CUP_C_Golf4_random_Civ CUP_C_Golf4_whiteblood_Civ CUP_C_Golf4_camo_Civ CUP_C_Golf4_camodigital_Civ CUP_C_Golf4_camodark_Civ CUP_C_Golf4_reptile_Civ CUP_C_Golf4_kitty_Civ CUP_C_Golf4_crowe_Civ Share this post Link to post Share on other sites
WatchDog 0 Report post Posted July 25, 2016 Been trying to find something on this for ages! Ive got all the CUP Vechs & Weapons, But cant seem to find how to enable the "duplicates" to be sold through the reskin "custom" trader. Would really like some advice on this Share this post Link to post Share on other sites
JakeHekesFists 58 Report post Posted March 7, 2017 If you wanted to do it for the golfs only.. thats easy enough... Only add the black civ golf and the camo dark sport golf to your trader buy lists. then add this into CfgVehicleCustoms inside config.cpp // CUP Vehicles class CUP_C_Golf4_Civ_Base { skins[] = { // { "classname", price, "description", {paste textures array}; }, {"CUP_C_Golf4_black_Civ", 350, "Blue", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_blue_CO.paa"};}, {"CUP_C_Golf4_black_Civ", 350, "Green", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_green_CO.paa"};}, {"CUP_C_Golf4_black_Civ", 350, "Red", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_co.paa"};}, {"CUP_C_Golf4_black_Civ", 350, "White", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_white_CO.paa"};}, {"CUP_C_Golf4_black_Civ", 350, "Yellow", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_yellow_CO.paa"};}, {"CUP_C_Golf4_black_Civ", 350, "Black (Default)", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_black_CO.paa"};} }; }; class CUP_C_Golf4_Civ_sport_Base { skins[] = { {"CUP_C_Golf4_camodark_Civ", 500, "Camo", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_camo_CO.paa"};}, {"CUP_C_Golf4_camodark_Civ", 500, "Camo (Digital)", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_camodigital_CO.paa"};}, {"CUP_C_Golf4_camodark_Civ", 500, "Jay Crowe", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_crowe_CO.paa"};}, {"CUP_C_Golf4_camodark_Civ", 500, "Herro Kitty", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_kitty_CO.paa"};}, {"CUP_C_Golf4_camodark_Civ", 500, "Reptile", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_reptile_CO.paa"};}, {"CUP_C_Golf4_camodark_Civ", 500, "White (Blood)", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_whiteblood_CO.paa"};}, {"CUP_C_Golf4_camodark_Civ", 500, "Dark Camo (Default)", {"\CUP\WheeledVehicles\CUP_WheeledVehicles_VWGolf\Data\vwgolf_body_camodark_CO.paa"};} }; }; To understand how this works. Then to add your own. Open up arma 3 with the desired mods. start the editor. virtual reality map. Place a vehicle. right click the vehicle > find in config viewer. Identify the base class... eg. CUP_C_Golf4_Civ_Base Find the Base class in the left hand pane. Double Click the class (then wait for it to load) Scroll down and find the option called + textureSources - Double click it. Now you'll have a list Black, Blood, Blue etc. Select the texture. in the main window look at textures[] = { "\cup blahblahblah"}; select that line. ctrl+c to copy. then paste it in to your file. 3 Share this post Link to post Share on other sites
[SDB] DerBlonde 1 Report post Posted December 22, 2018 Does anyone have a complete list of the CUP vehicles? greetz Share this post Link to post Share on other sites