mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
35 lines
837 B
Plaintext
35 lines
837 B
Plaintext
/*
|
|
* Author: Rocko, Ruthberg
|
|
* Deploy tactical ladder
|
|
*
|
|
* Arguments:
|
|
* Nothing
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* call ace_tacticalladder_fnc_deployTL;
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
if ((backpack ACE_player) != "ACE_TacticalLadder_Pack") exitWith {};
|
|
|
|
private ["_pos", "_offset", "_ladder"];
|
|
|
|
removeBackpack ACE_player;
|
|
|
|
_pos = ACE_player modelToWorld [0,0,0];
|
|
_offset = if ((ACE_player call CBA_fnc_getUnitAnim select 0) == "prone") then { 1 } else {0.8};
|
|
_pos set [0, (_pos select 0) + (sin (direction ACE_player) * _offset)];
|
|
_pos set [1, (_pos select 1) + (cos (direction ACE_player) * _offset)];
|
|
_pos set [2, [ACE_player] call CBA_fnc_realHeight];
|
|
|
|
_ladder = "ACE_Tactical_Ladder" createVehicle _pos;
|
|
_ladder setPos _pos;
|
|
_ladder setDir (direction ACE_player);
|
|
|
|
ACE_player reveal _ladder;
|