fnc_fired_deployable_firedHandler.sqf 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. params["_unit", "_weapon", "_muzzle", "_mode", "_ammo", "_magazine", "_projectile"];
  2. if(!local _unit) exitWith { diag_log "Fired Deployable not local" };
  3. if (isNull _projectile) then {
  4. _projectile = nearestObject [_unit, _ammo];
  5. };
  6. private _config = configFile >> "CfgAmmo" >> _ammo;
  7. private _deployable = getNumber (_config >> "rd501_fired_deployable");
  8. private _direction = direction _unit;
  9. if (_deployable == 1) then {
  10. [
  11. {
  12. params["_projectile"];
  13. private _speed = vectorMagnitude (velocity _projectile);
  14. !(isNil "_projectile") && (alive _projectile) && _speed <= 0.1
  15. },
  16. {
  17. params["_projectile", "_ammo", "_direction"];
  18. private _position = getPosATL _projectile;
  19. ["rd501_fired_deployable_deployServer", [_ammo, _position, _direction]] call CBA_fnc_serverEvent;
  20. deleteVehicle _projectile;
  21. },
  22. [_projectile, _ammo, _magazine, _unit, _direction],
  23. 10,
  24. {
  25. params["", "", "_magazine", "_unit"];
  26. systemChat "Something went wrong with your order, we apologise for the inconvenience.";
  27. systemChat "Please file all complaints with Mirror at the Aux Office.";
  28. [
  29. {
  30. params["_unit", "_mag"];
  31. _unit addItem _mag;
  32. systemChat "We've attached a complementary replacement if you had any inventory space.";
  33. },
  34. [_unit, _magazine],
  35. 2
  36. ] call CBA_fnc_waitAndExecute;
  37. }
  38. ] call CBA_fnc_waitUntilAndExecute;
  39. };