ACE3/addons/interaction/functions/fnc_tapShoulder.sqf

41 lines
1003 B
Plaintext
Raw Normal View History

/*
* Author: commy2
* Taps a shoulder
*
* Arguments:
* 0: Player <OBJECT>
* 1: Target <OBJECT>
2015-05-15 18:52:09 +00:00
* 2: Shoulder which was tapped <NUMBER>
*
* Return value:
* None
*
* Example:
* [player, target] call ace_interaction_fnc_tapShoulder
*
* Public: No
*/
2015-01-11 23:13:47 +00:00
#include "script_component.hpp"
2015-01-11 19:32:51 +00:00
2015-05-15 18:52:09 +00:00
PARAMS_3(_tapper,_target,_shoulderNum);
2015-01-11 19:32:51 +00:00
if (_target != ACE_player) exitWith {
addCamShake [4, 0.5, 5];
ACE_player playActionNow "PutDown";
if !(local _target) then {
[[_tapper, _target, _shoulderNum], QUOTE(DFUNC(tapShoulder)), _target] call EFUNC(common,execRemoteFnc);
};
2015-01-11 19:32:51 +00:00
};
addCamShake [4, 0.5, 5];
2015-05-09 20:14:00 +00:00
private ["_message"];
2015-04-04 22:54:15 +00:00
//localize is converting the escaped <> symbols, so just add them here instead of in the stringtable
if (_shoulderNum == 0) then {
2015-05-28 19:59:04 +00:00
_message = format ["%1 &gt;", (localize LSTRING(YouWereTappedRight))];
} else {
2015-05-28 19:59:04 +00:00
_message = format ["&lt; %1", (localize LSTRING(YouWereTappedLeft))];
};
2015-01-11 19:32:51 +00:00
2015-04-04 22:54:15 +00:00
[parseText _message] call EFUNC(common,displayTextStructured);