mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
44 lines
888 B
Plaintext
44 lines
888 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: commy2
|
|
* Someone opened your backpack. Play sound and camshake. Execute locally.
|
|
*
|
|
* Arguments:
|
|
* 0: Who accessed your inventory? <Object>
|
|
* 1: Unit that wields the backpack <Object>
|
|
* 2: The backpack object <Object>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [bob, kevin, backpack] call ace_backpacks_fnc_backpackOpened
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_target", "_backpack"];
|
|
|
|
// do cam shake if the target is the player
|
|
if (_target call EFUNC(common,isPlayer)) then {
|
|
addCamShake [4, 0.5, 5];
|
|
};
|
|
|
|
// play a zipper sound effect
|
|
private _sounds = [
|
|
QUOTE(PATHTO_R(sounds\zip_in.wav)),
|
|
QUOTE(PATHTO_R(sounds\zip_out.wav))
|
|
];
|
|
|
|
private _position = _target modelToWorldVisualWorld (_target selectionPosition "Spine3");
|
|
|
|
playSound3D [
|
|
selectRandom _sounds,
|
|
objNull,
|
|
false,
|
|
_position,
|
|
1,
|
|
1,
|
|
50
|
|
];
|