Uploading new files for load functions

The files are heavily edited.
This commit is contained in:
worldwidesorrow
2019-12-11 18:34:41 -06:00
committed by GitHub
parent 1b9679d646
commit bbdaf0cffe
4 changed files with 78 additions and 90 deletions

View File

@@ -0,0 +1,18 @@
// unload_wounded.sqf
// December 2019 - JasonTM
private "_wounded";
_wounded = _this;
// Check to see that the passed object matches local player object
if (player != _wounded) exitWith {};
// Check if the player is still unconscious
if (r_player_unconscious) then {
// Reestablish the "lie on back" animation
[nil, _wounded, rSWITCHMOVE, "ainjppnemstpsnonwrfldnon"] call RE;
_wounded switchmove "ainjppnemstpsnonwrfldnon";
};
r_drag_sqf = false;