mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a4ae61f1fc
* allow players to reload from nearSupplies * limit reloading to friendly sides * add handling for ai getting inside empty weapon * configOf for lookup * add getin handler, hammer out remaining bugs * configOf lookup * improve friendly/object filter * more configOf lookups * Capitalize settings, add ammo storage setting * remove systemChat Co-authored-by: PabstMirror <pabstmirror@gmail.com> * fix TRACE Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com>
23 lines
549 B
Plaintext
23 lines
549 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: GhostIsSpooky
|
|
* Handles AI GetIn on an empty weapon
|
|
*
|
|
* Arguments:
|
|
* GetIn EH
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
params ["_staticWeapon", "_role", "_gunner"];
|
|
TRACE_3("getInEH:",_staticWeapon,_role,_gunner);
|
|
|
|
if ((!local _gunner) || {[_gunner] call EFUNC(common,isPlayer)}) exitWith {};
|
|
if (someAmmo _staticWeapon) exitWith {};
|
|
|
|
TRACE_2("need ammo",someAmmo _staticWeapon,magazinesAllTurrets _staticWeapon);
|
|
|
|
[_staticWeapon, _gunner, currentWeapon _staticWeapon] call FUNC(ai_reload);
|