mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
530 B
Plaintext
27 lines
530 B
Plaintext
|
/*
|
||
|
* Author: commy2
|
||
|
* Handle player changes.
|
||
|
*
|
||
|
* Arguments:
|
||
|
* 0: New Player Unit <OBJECT>
|
||
|
* 1: Old Player Unit <OBJECT>
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
if (isNull (GETMVAR(ladder,objNull))) exitWith {};
|
||
|
|
||
|
params ["_newPlayer", "_oldPlayer"];
|
||
|
|
||
|
if (GVAR(ladder) in attachedObjects _newPlayer) then {
|
||
|
[_newPlayer, GVAR(ladder)] call FUNC(cancelTLdeploy);
|
||
|
};
|
||
|
|
||
|
if (GVAR(ladder) in attachedObjects _oldPlayer) then {
|
||
|
[_oldPlayer, GVAR(ladder)] call FUNC(cancelTLdeploy);
|
||
|
};
|