Jump to content

Varry

Member
  • Content Count

    61
  • Joined

  • Last visited

  • Medals

Posts posted by Varry


  1. lol... Thats funny because its true... The real question is What really did happen to the lady reporter Mariane?

    After the Sahranis discovered what she was, they captured her in a clandestine operation, faked her death and are now holding her in a secret bunker underneath Bagango, where her ovaries are being extracted and fertilized to ensure the procreation of the dying Sahrani race.

    to put it in simple words; they're banging her till her lights go out!! whistle.gif


  2. Sinperdoc,

    This is a quote from your original post:

    "...I'm not saying that it's not an intimidating weapon... well actually that is what I'm saying... I'm saying that people just aren't impressed when you try to hold them at bay with an AK47/74 anymore in the mid-east."

    I think that these are the words that Blaschiow was referring to. I am not entirely sure what you were trying to say here; but it came of sounding like you don't consider AK fire to be a serious threat.  That's a very odd statement to make; even more so, since your job is to save lives that were endangered by this weapon.

    Peace,

    DreDay

    i don't w&nt to play the devil's advocate, but i think you have to read all the words, i think what he means is the combo:

    AK's in the mid east (probably old and since the fall of the regime, badly maintained) + untrained soldiers firing the weapon = not a too big threat to a trained soldier with good and well maintained weapon.

    Now a little question

    ak uses 7.62x39MM ammo while the G3 uses the same calibre but longer ammo (7.62x51MM); what's the difference in performance and lethality of both ammunition types?


  3. I have written a general-purpose magazine-refiller that will work with any vehicle sans any pre-configuration of the script. The only problem as of right now is that it can't handle secondary turrets properly, i.e the door gunner (right side) on the UH60 and the commander turrets for MBTs will not be refilled. In the case of the UH60, it will add all the configured magazines (two) to the crew-chief (left side) weapon.

    As soon as someone (or I) figure out how to specify which weapon to get what ammo, I'll update the script.

    It has been tried and it works with the following vehicles: AH6, AV8B, UH60 MG, M1A1, HMMWV M2, HMMWV TOW, BRDM ATGM and M113. It doesn't matter if you are completely dry or not, it refills from 0 magazines up to maximum as defined in the config.

    It's sqf-based, so either you compile/loadFile it and use call, or you execVM it, and pass in a reference to the vehicle in question.

    rearm.sqf:

    <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">

    _veh = (_this select 0);

    _type = (typeOf _veh);

    _hasTurrets = (count (configFile >> "CfgVehicles" >> _type >> "Turrets")) > 0;

    {_veh removeMagazine _x;} forEach magazines _veh;

    _magazines = if (_hasTurrets) then

    {

       _ms = [];

       for "_i" from 0 to ((count (configFile >> "CfgVehicles" >> _type >> "Turrets")) - 1) do

       {

           _t = (configFile >> "CfgVehicles" >> _type >> "Turrets") select _i;

           _ms = _ms + (getArray (_t >> "magazines"));

       };

       _ms

    }

    else

    {

       _ms = getArray (configFile >> "CfgVehicles" >> _type >> "magazines");

       _ms

    };

    {_veh addMagazine _x} forEach _magazines;

    how do i get this one to run?

    it's that part i have trouble with:

    "It's sqf-based, so either you compile/loadFile it and use call, or you execVM it, and pass in a reference to the vehicle in question."

    d i put the textpad file (.sqf) in my mission folder and execute it in the init line of a helipad?

×