mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a8831a0d16
- medical component is responsible for the injuries and common functionality - medical_treatment component is responsible for offering treatment functionality
30 lines
678 B
Plaintext
30 lines
678 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Check if caller can access targets medical equipment, based upon accessLevel.
|
|
*
|
|
* Arguments:
|
|
* 0: The caller <OBJECT>
|
|
* 1: The target <OBJECT>
|
|
*
|
|
* ReturnValue:
|
|
* Can Treat <BOOL>
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
params ["_caller", "_target"];
|
|
|
|
private _accessLevel = _target getVariable [QGVAR(allowSharedEquipmentAccess), -1];
|
|
|
|
private _return = false;
|
|
|
|
if (_accessLevel >= 0) then {
|
|
if (_accessLevel == 0) exitWith { _return = true; };
|
|
if (_accessLevel == 1) exitWith { _return = (side _target == side _caller); };
|
|
if (_accessLevel == 2) exitWith { _return = (group _target == group _caller); };
|
|
};
|
|
|
|
_return;
|