Troubles with installing custom skins

irbis5631

New Member
Hi everybody.I'm stuck.I read the instructions for installing skins, but the character appears in the desert somewhere, invisible and nothing can be done, but to change the look. Thus, none of the players can not connect, they can see the inscription "Something is wrong, disconnect and try again". Thus, none of the players can not connect at startup says "Something is wrong, disconnect and try again". I unban skins in dayz_anim\config.cpp and try start server with rMod, but it does not help. Maybe I'm doing something wrong or made ​​a mistake somewhere, can you correct me if this is so? Here's the code files that I have changed:

dayz_weapons\CfgVehicles.hpp
Code:
    class MVD_Soldier_DZ: Soldier_Crew_PMC {
        displayName = "MVD";
        side = TWest;
        weapons[] = {"Throw", "Put"};
        magazines[] = {};
        model = "\dayz\characters\man_survivor";
        respawnWeapons[] = {"Throw", "Put"};
        respawnMagazines[] = {};
        weaponSlots = 1    +    4    + 12*        256    + 2*    4096    +    2    + 8*    16  + 12*131072;
        canHideBodies = true;
    };

dayz_code\actions\player_wearClothes.sqf
Code:
    case "Skin_MVD_Soldier_DZ": {
        _model = "MVD_Soldier_DZ";
    };

dayz_code\init\variables.sqf
Code:
//Model Variables
Bandit1_DZ =    "Bandit1_DZ";
BanditW1_DZ =    "BanditW1_DZ";
Survivor1_DZ =    "Survivor2_DZ";
Survivor2_DZ =    "Survivor2_DZ";
SurvivorW2_DZ = "SurvivorW2_DZ";
Sniper1_DZ =    "Sniper1_DZ";
Camo1_DZ =        "Camo1_DZ";
Soldier1_DZ =    "Soldier1_DZ";
Rocket_DZ =    "Rocket_DZ";
MVD_Soldier_DZ =    "MVD_Soldier_DZ";

dayz_code\CfgVehicles.hpp
Code:
    class MVD_Soldier;
    class MVD_Soldier_DZ: MVD_Soldier {
        displayName = "MVD";
        side = 1;
        weapons[] = {"Throw","Put"};
        backpack = "";
        magazines[] = {};
        respawnWeapons[] = {"Throw","Put"};
        respawnMagazines[] = {};
        weaponSlots = "1    +    4    + 12*        256    + 2*    4096    +    2    + 8*    16  + 12*131072";
        canHideBodies = 1;
    };

P.S. Can anyone lay out the correct code for the files that you want to change is already installed and working skin as an example?
 
Back
Top