Results 1 to 2 of 2

Thread: Body Armor mod for West and East soldiers

  1. #1

    Body Armor mod for West and East soldiers

    I've had trouble getting my body armor HitPoints to work because all characters created through content off of the net already has its set values for Hit Points. Is it possible to create a Body Armor mod that sets values for not just the generic forces on ArmA 2 but the created content like Navy Seal mods etc????

    I set the hitpoints specifically for all units of West, East, Guerrilla and Independant troops but only works with default content from the regular game.

  2. #2
    Staff Sergeant DeclaredEvol's Avatar
    Join Date
    Jul 14 2009
    Location
    Mars 2190
    Posts
    348
    Author of the Thread
    I have produced script but it doesn't seem to work for custom units

    Can anyone help me????

    // This mod is dedicated to some of the issues one of the last body armor mods had, and to ACE MOD and the..
    // ... ArmA Community, thankyou for downloading my mod. I will also be adding some more features later on.

    /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~*/
    /*/////////////////////////////////////////////////////////////////
    /////////EVERY SOLDIER HAS ARMOR 'CAManBase(MAN)'////////////////*/
    /*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~*/

    class CfgVehicles
    {
    class All; // External class reference
    class AllVehicles; // External class reference
    class Land; // External class reference
    class Man;
    class LandVehicle; // External class reference
    class Motorcycle; // External class reference
    class CAManBase; // External class reference
    class Static; // External class reference
    class Building; // External class reference
    class NonStrategic; // External class reference
    class Strategic; // External class reference
    class SoldierWB; // External class reference
    class SoldierEB; // External class reference
    class Logic; // External class reference

    class CAManBase : Man
    {

    armor = 5;
    armorStructural = 50;

    class HitPoints
    {
    class HitHead
    {
    armor = .85;
    passThrough = 1;
    };

    class HitBody
    {
    armor = 100;
    passThrough = 0;
    };

    class HitHands
    {
    armor = .5;
    passThrough = 1;
    };

    class HitLegs
    {
    armor = .5;
    passThrough = 1;
    };
    };
    };


    class Civilian : CAManBase
    {
    armor = 3.1;

    class HitPoints
    {
    class HitHead {};
    };
    };

    };

Similar Threads

  1. How to make complete mayhem, west attacks west, east attacks east, civies attack civi
    By Perrinmajor in forum ARMA 2 & OA : MISSIONS - Editing & Scripting
    Replies: 6
    Last Post: Jul 4 2009, 00:12
  2. Replies: 3
    Last Post: Apr 21 2009, 22:20
  3. East Germany soldiers and  west weapons??
    By eagleusa in forum ADDONS & MODS: DISCUSSION
    Replies: 1
    Last Post: Apr 6 2008, 16:31
  4. Body Armor?
    By Ni7suj in forum ARMA - GENERAL
    Replies: 2
    Last Post: Jun 13 2007, 18:07
  5. Ofp soldiers - no body armor?
    By David Shipley in forum OFFTOPIC
    Replies: 5
    Last Post: Jan 15 2003, 10:31

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •