mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
487 B
Plaintext
22 lines
487 B
Plaintext
|
/*
|
||
|
* Author: joko // Jonas
|
||
|
*
|
||
|
* Handle fire of Other Weapons
|
||
|
*
|
||
|
* Argument:
|
||
|
* 0: Unit that fired (Object)
|
||
|
* 1: Weapon fired (String)
|
||
|
* 2: Muzzle (String)
|
||
|
* 3: Mode (String)
|
||
|
* 4: Ammo (String)
|
||
|
* 5: Magazine (String)
|
||
|
* 6: Projectile (Object)
|
||
|
*
|
||
|
* Return value:
|
||
|
* None
|
||
|
*/
|
||
|
|
||
|
if (missionNameSpace getVariable [(QGVAR(Damage) + _this select 1),(([_this select 1,_this select 5] call DFUNC(cacheOverPressureVales)) select 2)]) then {
|
||
|
_this call DFUNC(fireOverpressureZone)
|
||
|
};
|