Hi,
ich habe das Problem das ein Fahrzeug (Hunter) der bei den Rebellen gekauft wird immer den Skin bekommt der in der Config als erstes eingetragen ist und es keine Auswahlmöglichkeit gibt. Zu Testzwecken habe diesen im Normalen Car Shop eingefügt und dort funktioniert die Skin Auswahl.
Config_Vehicles.hpp
Shop Mafia (Rebellen):
class mafia_car {
side = "civ";
conditions = "";
vehicles[] = {
{ "B_Quadbike_01_F", "" },
{ "B_G_Offroad_01_F", "" },
{ "B_G_Offroad_01_armed_F", "" },
{ "O_T_LSV_02_unarmed_F", "" }, //Apex DLC
{ "O_MRAP_02_F", "" },
{ "B_MRAP_01_F", "" }, //Hunter
{ "I_MRAP_03_F", "" },
{ "B_Heli_Light_01_stripped_F", "" }
};
};
Shop Car:
class civ_car {
side = "civ";
conditions = "";
vehicles[] = {
{ "B_Quadbike_01_F", "" },
{ "C_Hatchback_01_F", "" },
{ "C_Offroad_01_F", "" },
{ "C_SUV_01_F", "" },
{ "C_Hatchback_01_sport_F", "" },
{ "C_Van_01_transport_F", "" },
{ "B_MRAP_01_F", "" }, //Hunter
{ "C_Offroad_02_unarmed_F", "" } //Apex DLC
};
};
Class Hunter:
class B_MRAP_01_F {
vItemSpace = "license_civ_driver {!(playerSide isEqualTo civilian)}";
price = 5000000;
textures[] = {
{ "Schnee", "civ", {
"textures\CIV\Hunter\hunter_front.paa"
}, "" },
{ "Digital", "civ", {
"textures\CIV\Hunter\mrap_01_base_co-digital.jpg"
}, "" },
{ "MTP", "civ", {
"textures\CIV\Hunter\mrap_01_base_co-mtp.jpg"
}, "" },
{ "Polizei", "cop", {
"textures\Polizei\bullen_hunter1.paa"
}, "" },
{ "SEK", "cop", {
"textures\Polizei\SEK_hunter1.paa"
}, "" },
{ "Zoll", "cop", {
"textures\Polizei\zoll_hunter1.paa"
}, "" }
};
};
MFG McNormandy