Hi all !
I've made a basic addon of women soldiers with this config.cpp file :
class CfgPatches
{
class LG_unites
{
units[] = {"LG_res_rpg","LG_res_PK"};
weapons[] = {};
requiredVersion = 1.96;
requiredAddons[]={};
};
};
class CfgVehicles
{
class All{};
class AllVehicles:All{};
class Land:AllVehicles{};
class Man:Land{};
class Civilian: Man{};
class LG_res_rpg: Civilian
{
vehicleClass="LG units";
displayName="Soldate 1";
model="\O\Char\civilistka02c";
weaponSlots="1 + 16 + 10* 256 + 2* 4096 + 2 + 4* 32+65536";
side=2
weapons[]={"AK47","RPGLauncher","Throw","Put"};
magazines[]={"AK47","AK47","AK47","AK47","RPGLauncher","RPGLauncher","RPGLauncher"};
};
class LG_res_PK: Civilian
{
vehicleClass="LG units";
displayName="Soldate 2";
model="\O\Char\civilistka02b";
weaponSlots="1 + 16 + 10* 256 + 2* 4096 + 2 + 4* 32+65536";
side=2
weapons[]={"PK","Throw","Put"};
magazines[]={"PK","PK","PK","PK","PK"};
};
};
This only problem bears on women faces : indeed, the game pastes a face of a man on these women
! Can anyone help me ?