mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
155503d4a1
Removed unnecessary GUI functions. Updated displayIcon function to be more dynamic Added client side settings for displaying icons.
80 lines
2.1 KiB
Plaintext
80 lines
2.1 KiB
Plaintext
/**
|
|
* fn_assignMedicalEquipment.sqf
|
|
* @Descr: N/A
|
|
* @Author: Glowbal
|
|
*
|
|
* @Arguments: []
|
|
* @Return:
|
|
* @PublicAPI: false
|
|
*/
|
|
#define ALL_PLAYERS 0
|
|
#define ONLY_MEDICS 1
|
|
|
|
|
|
// TODO add amount of to defines
|
|
#define BASIC_BANDAGES "ACE_bandage_basic"
|
|
#define PACKING_BANDAGES "ACE_packing_bandage"
|
|
|
|
#include "script_component.hpp"
|
|
|
|
private ["_logic","_setting","_objects", "_medicsLoadout", "_nonMedics", "_code"];
|
|
_logic = [_this,0,objNull,[objNull]] call BIS_fnc_param;
|
|
if (!isNull _logic) then {
|
|
_setting = _logic getvariable ["equipment",0];
|
|
waituntil {time>0};
|
|
|
|
_start = diag_tickTime;
|
|
|
|
// TODO Create functions for adding multiple magazines to a unit
|
|
// TODO Check if unit can store more magazines (ie backpack/vest/uniform are not full)
|
|
|
|
_medicsLoadout = {
|
|
for "_i" from 1 to 8 do {
|
|
player addItem BASIC_BANDAGES;
|
|
player addItem PACKING_BANDAGES;
|
|
};
|
|
for "_i" from 1 to 3 do {
|
|
player addItem "ACE_tourniquet";
|
|
};
|
|
for "_i" from 1 to 3 do {
|
|
player addItem "ACE_morphine";
|
|
};
|
|
for "_i" from 1 to 2 do {
|
|
player addItem "ACE_epinephrine";
|
|
};
|
|
};
|
|
|
|
_nonMedics = {
|
|
for "_i" from 1 to 3 do {
|
|
player addItem BASIC_BANDAGES;
|
|
};
|
|
player addItem "ACE_tourniquet";
|
|
player addItem "ACE_morphine";
|
|
};
|
|
|
|
// TODO make this neat code.
|
|
switch (_setting) do {
|
|
case ALL_PLAYERS: {
|
|
_code = if ([player] call FUNC(isMedic)) then {
|
|
_medicsLoadout;
|
|
} else {
|
|
_nonMedics;
|
|
};
|
|
|
|
call _code;
|
|
player addEventhandler["Respawn", _code];
|
|
};
|
|
case ONLY_MEDICS: {
|
|
_code = if ([player] call FUNC(isMedic)) then {
|
|
_medicsLoadout;
|
|
} else {
|
|
{};
|
|
};
|
|
call _code;
|
|
player addEventhandler["Respawn", _code];
|
|
};
|
|
default {};
|
|
};
|
|
};
|
|
|
|
true |