Hello,
i'm actually trying to add thoses skins: http://www.armaholic.com/page.php?id=9849
so i modified the file cfgVehicules.hpp in my dayz_code.pbo (in my ftp folder on vilayer)
i just added this to the skins class list:
class sah_civilian1_pants;
class CIV1_DZ: sah_civilian1_pants{displayName = "Civil";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;canCarryBackPack = 1;};
then in the file Variables.sqf i added CIV1_DZ to the list of skins in allplayer
and in the dayz_server.pbo i modified the file server_playerLogin.sqf
and i putted this :
if (!(_model in AllPlayers)) then {
_model = "CIV1_DZ";};} else {_isInfected = _primary select 3;_model = _primary select 4;_hiveVer = _primary select 5;if (isNil "_model" or _model== "") then {_model = "CIV1_DZ";};
but when i start the game i see the loading screen "dayz epoch" then i see really fast the MOTD and then it go to the main menu of the game(arma2 arrow head)...
so if anyone have an idea about why it don't work...