Hey The Following is a Config for a Soldier with out the Bed Roll, and it doesn't Work! tell me if I missed something, or rather what I'm Missing, I just want the Single Guy with An M16 with six Mags Ready?
// some basic defines
#define TEast 0
#define TWest 1
#define TGuerrila 2
#define TCivilian 3
#define TSideUnknown 4
#define TEnemy 5
#define TFriendly 6
#define TLogic 7
#define true 1
#define false 0
class CfgPatches
{
class Groups
{
units[] = {};
weapons[] = {};
requiredVersion = 1.10
};
};
class CfgVehicles
{
   class All{};
   class AllVehicles:All{};
   class Land:AllVehicles{};
   class Man:Land{};
   class Soldier:Man{};
   class SoldierWB:Ranger{};
  Â
class SoldierWB: Ranger
{
model="Ranger";
moves="CfgMovesMC";
picture="ivojak";
vehicleClass="Men";
scope=2;
side=1;
accuracy=0.700000;
displayName="Ranger";
weapons[]={"M16","Throw","Put"};
magazines[]={"M16","M16","M16","M16","M16","M16","HandGrenade","HandGrenade","HandGrenade","HandGrenade"};
cost=40000;
Thanks In advance!