武装突袭3

武装突袭3

Simple Armband Auto Equip
8 条留言
Baigaman  [作者] 12 月 10 日 上午 10:37 
@Deo
If the simple armbands mod works for kp liberation then this works
Deo 12 月 10 日 上午 12:43 
would this work for kp liberation?
dino 8 月 11 日 下午 10:53 
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  [作者] 3 月 19 日 下午 11:57 
@Wartia
Check the addon options, you have side specific settings for armband type, color and occurrence
KOFF 3 月 15 日 上午 1:17 
Can you explain how this works for example if I want invaders to wear a armband, what do I do?
aeroNes 1 月 31 日 下午 12:44 
does this work without the ace3 compat mod? as i dont play with ace.
Baigaman  [作者] 1 月 11 日 上午 4:52 
@Sw00sh
This was an absent minded mistake of mine. Should be corrected now :)
Sw00sh 1 月 5 日 下午 7:35 
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!