Jump to content

JohnsonTFB

Member
  • Content Count

    9
  • Joined

  • Last visited

  • Medals

  • Medals

Posts posted by JohnsonTFB


  1. The script was a bit badly written, sorry about that.

    Try this:

    _unit=_this select 0;
    _weapon=_this select 1;
    _bullet=nearestObject [_unit,_this select 4];
    
    if (speed _bullet<500) exitwith{};
    
    _power=1;
    if (_weapon=="m16a4") then {_power=0.4;};
    
    _bullet setVelocity [(velocity _bullet select 0)*_power,(velocity _bullet select 1)*_power,(velocity _bullet select 2)*_power];

    so drop this "boost.sqf" into my mission file and boot it up and it should work, i dont need any other filles other than the mission file and the boost.sqf file?


  2. Is there a script that you can use to limit the damage done to a player/object. to get a low velocity ammunition or less lethal that can be used for live fire training.

    Alternatively used with ACE have a script when used with low velocity ammunition: if shot, you would require a shot of epinephrine, instead of the morphine and bandage required after take a live round, in the unlikelihood that you don't die from your wounds

×