mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
377 B
Plaintext
16 lines
377 B
Plaintext
//eject_illum.sqf
|
|
private["_shell", "_velocity", "_pos", "_flareChute", "_chuteVel"];
|
|
|
|
_shell = _this select 6;
|
|
|
|
_velocity = velocity _shell;
|
|
|
|
_pos = getPos _shell;
|
|
|
|
_flareChute = "ace_arty_120mm_dm26_dm93_parachute" createVehicle _pos;
|
|
_flareChute setPos _pos;
|
|
_chuteVel = [_velocity,0.25] call ACE_fnc_vectorMultiply;
|
|
_flareChute setVelocity _chuteVel;
|
|
|
|
false
|