Arma 3
Not enough ratings
Simple Armband Auto Equip
   
Award
Favorite
Favorited
Unfavorite
Data Type: Mod
Mod Type: Equipment
File Size
Posted
Updated
7.038 KB
Dec 23, 2024 @ 3:10pm
Jan 11 @ 4:50am
2 Change Notes ( view )

Subscribe to download
Simple Armband Auto Equip

In 1 collection by Baigaman
Required mods
112 items
Description
Description
This mod automatically equips units with armbands from Jedis Simple Armbands mod.
Includes faction specific options for color, size and occurence.

The script minimal and only runs on unit creation, so it will have no impact on performance.
This is a quick mod I threw together for our Antistasi Ultimate server, so use as is.

Requirements
CBA_A3
Simple Armbands
ACE3 Arsenal Extended for Simple Armbands

GitHub repository[github.com]
6 Comments
paul Aug 11 @ 10:53pm 
Added a script that auto-adds this to spawned zues units

private _assignArmbands = {
params ["_unit"];

if (side _unit == east) then {
_unit addItem "Armband_Red_medium2_NVG";
_unit selectWeapon "Armband_Red_medium2_NVG";
} else if (side _unit == independent) then {
_unit addItem "Armband_Green_medium2_NVG";
_unit selectWeapon "Armband_Green_medium2_NVG";
} else if (side _unit == west) then {
_unit addItem "Armband_Blue_medium2_NVG";
_unit selectWeapon "Armband_Blue_medium2_NVG";
};
};

[] spawn {
waitUntil { !isNil "ZUES" };
while { true } do {
{
if (isNull _x) exitWith {};
if (!(_x getVariable ["armbandAssigned", false])) then {
_assignArmbands call _x;
_x setVariable ["armbandAssigned", true];
};
} forEach allUnits;
sleep 1;
};
};


And just call it in the init.sqf

[] execVM "autoArmbands.sqf";
Baigaman  [author] Mar 19 @ 11:57pm 
@Wartia
Check the addon options, you have side specific settings for armband type, color and occurrence
KOFF Mar 15 @ 1:17am 
Can you explain how this works for example if I want invaders to wear a armband, what do I do?
aeroNes Jan 31 @ 12:44pm 
does this work without the ace3 compat mod? as i dont play with ace.
Baigaman  [author] Jan 11 @ 4:52am 
@Sw00sh
This was an absent minded mistake of mine. Should be corrected now :)
Sw00sh Jan 5 @ 7:35pm 
Hello, thank you for the mod! I wanted to comment that since this does not have a signature you need to run your dedicated server with signature verification disabled to connect to it with your client for configuration. Adding a bikey to this mod would help for those experiencing issues setting this up. Otherwise - nothing to say but awesome work!