mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
544 B
Plaintext
29 lines
544 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Taps a shoulder
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Target <OBJECT>
|
|
* 2: Shoulder which was tapped [0: left, 1: right] <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, target, 0] call ace_interaction_fnc_tapShoulder
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit", "_target", "_shoulderNum"];
|
|
|
|
if (_unit == ACE_player) then {
|
|
addCamShake [4, 0.5, 5];
|
|
};
|
|
|
|
_unit playActionNow "PutDown";
|
|
|
|
["tapShoulder", [_target], [_target, _shoulderNum]] call EFUNC(common,targetEvent);
|