mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
fd139abb42
* Use setShotParents in Advanced Throwing - close #5034 * Execute setShotParents on server (server-only command)
70 lines
2.3 KiB
Plaintext
70 lines
2.3 KiB
Plaintext
/*
|
|
* Author: Dslyecxi, Jonpas
|
|
* Primes the throwable, creates global throwable vehicle and throws Fired XEH.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Show Hint <BOOL> (default: false)
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [unit] call ace_advanced_throwing_fnc_prime
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit", ["_showHint", false]];
|
|
TRACE_2("params",_unit,_showHint);
|
|
|
|
_unit setVariable [QGVAR(primed), true];
|
|
|
|
// Remove item before cooking to prevent weaponselect showing more throwables than there actually are in inventory
|
|
private _throwableMag = (currentThrowable _unit) select 0;
|
|
_unit removeItem _throwableMag;
|
|
|
|
private _throwableType = getText (configFile >> "CfgMagazines" >> _throwableMag >> "ammo");
|
|
private _muzzle = _unit getVariable [QGVAR(activeMuzzle), ""];
|
|
|
|
// Set muzzle ammo to 0 to block vanilla throwing (can only be 0 or 1), removeItem above resets it
|
|
_unit setAmmo [_muzzle, 0];
|
|
|
|
// Handle weird scripted grenades (RHS) which could cause unexpected behaviour
|
|
private _nonInheritedCfg = configProperties [configFile >> "CfgAmmo" >> _throwableType, 'configName _x == QGVAR(replaceWith)', false];
|
|
if ((count _nonInheritedCfg) == 1) then {
|
|
_throwableType = getText (_nonInheritedCfg select 0);
|
|
};
|
|
|
|
// Create actual throwable globally
|
|
private _activeThrowableOld = _unit getVariable [QGVAR(activeThrowable), objNull];
|
|
private _activeThrowable = createVehicle [_throwableType, _activeThrowableOld, [], 0, "CAN_COLLIDE"];
|
|
_unit setVariable [QGVAR(activeThrowable), _activeThrowable];
|
|
deleteVehicle _activeThrowableOld;
|
|
|
|
// Throw Fired XEH
|
|
[QGVAR(throwFiredXEH), [
|
|
_unit, // unit
|
|
"Throw", // weapon
|
|
_muzzle, // muzzle
|
|
_muzzle, // mode
|
|
_throwableType, // ammo
|
|
_throwableMag, // magazine
|
|
_activeThrowable // projectile
|
|
]] call CBA_fnc_globalEvent;
|
|
|
|
// Set prime instigator
|
|
[QEGVAR(common,setShotParents), [_activeThrowable, _unit, _unit]] call CBA_fnc_serverEvent;
|
|
|
|
if (_showHint) then {
|
|
// Show primed hint
|
|
private _displayNameShort = getText (configFile >> "CfgMagazines" >> _throwableMag >> "displayNameShort");
|
|
private _picture = getText (configFile >> "CfgMagazines" >> _throwableMag >> "picture");
|
|
|
|
[[_displayNameShort, localize LSTRING(Primed)] joinString " ", _picture] call EFUNC(common,displayTextPicture);
|
|
|
|
// Change controls hint for RMB
|
|
call FUNC(updateControlsHint);
|
|
};
|