mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
715 B
Plaintext
31 lines
715 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Handle player changes.
|
|
*
|
|
* Arguments:
|
|
* 0: New Player Unit <OBJECT>
|
|
* 1: Old Player Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [_newPlayer, _oldPlayer] call ace_dragging_fnc_handlePlayerChanged;
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_newPlayer", "_oldPlayer"];
|
|
TRACE_2("params",_newPlayer,_oldPlayer);
|
|
|
|
{
|
|
if (_x getVariable [QGVAR(isDragging), false]) then {
|
|
[_x, _x getVariable [QGVAR(draggedObject), objNull]] call FUNC(dropObject);
|
|
};
|
|
|
|
if (_x getVariable [QGVAR(isCarrying), false]) then {
|
|
[_x, _x getVariable [QGVAR(carriedObject), objNull]] call FUNC(dropObject_carry);
|
|
};
|
|
} forEach [_newPlayer, _oldPlayer];
|