ACE3/addons/interaction/functions/fnc_tapShoulder.sqf

25 lines
788 B
Plaintext
Raw Normal View History

2015-01-11 19:32:51 +00:00
// by commy2
2015-01-11 23:13:47 +00:00
#include "script_component.hpp"
2015-01-11 19:32:51 +00:00
EXPLODE_3_PVT(_this,_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-04-04 22:54:15 +00:00
private "_message";
//localize is converting the escaped <> symbols, so just add them here instead of in the stringtable
if (_shoulderNum == 0) then {
2015-04-04 22:54:15 +00:00
_message = format ["%1 &gt;", (localize "STR_ACE_Interaction_YouWereTappedRight")];
} else {
2015-04-04 22:54:15 +00:00
_message = format ["&lt; %1", (localize "STR_ACE_Interaction_YouWereTappedLeft")];
};
2015-01-11 19:32:51 +00:00
2015-04-04 22:54:15 +00:00
[parseText _message] call EFUNC(common,displayTextStructured);