Arma 3
Not enough ratings
Battleboys Arsenal Loadout Anywhere
   
Award
Favorite
Favorited
Unfavorite
Data Type: Mod
Mod Type: Equipment
File Size
Posted
372.094 KB
17 Jul, 2021 @ 9:42pm
1 Change Note ( view )

Subscribe to download
Battleboys Arsenal Loadout Anywhere

Description
A quick utility that will let players grab any loadout saved in BI Arsenal, access full BI Arsenal, or access ACE Arsenal (assuming server is running ACE... otherwise this button doesn't do anything).

If you're running ACE, the activation will be on your ACE Self-interaction menu. If you aren't, the utility can be accessed from the Action menu when you scroll your mouse wheel.

Mission makers can disable the mod completely per mission (plus it has a key, so servers can allow or deny it altogether) or have it bound to an area or time limit (some instructions included in the mod folder).

I'm not working on it anymore as it works the way I want it to. :)

I made this after seeing Crowe's Loadout Transfer 2 (https://steamhost.cn/steamcommunity_com/sharedfiles/filedetails/?id=704347231) and just wanted something a bit more customised without some of its features.

8 Comments
Mr.Frost  [author] 6 May, 2023 @ 10:32am 
Glad it works for you :)
jordantyson3636 6 May, 2023 @ 1:27am 
Thank you, thank you!!!! I thought saving loadouts was over with extended Arsenal, but this solved all my "load out not allowed" problems!! Thanks to this masterpiece I'm back in business!! Lol. Thanks again, I appreciate and enjoy your work!!
Mr.Frost  [author] 24 Jul, 2021 @ 11:36am 
Glad it worked :)
MSFMiller 24 Jul, 2021 @ 10:01am 
Yup, seems to be working fine. Thanks alot for the help man! :steamthumbsup:
MSFMiller 24 Jul, 2021 @ 9:39am 
Wow, I think that might have just done the trick.
MSFMiller 24 Jul, 2021 @ 9:33am 
I'll give it a try, thanks.
Mr.Frost  [author] 23 Jul, 2021 @ 11:08pm 
@MSFMiller You might be able to set the variable

_playerstart = player getVariable ["enableBB_ALA_Start",true];

Then have another loop that checks whether stuff is loaded....

if(hasInterface) then {
[] spawn {
waitUntil {sleep 1; !isNull player};
player setVariable ["enableBB_ALA",false,false];
player setVariable ["enableBB_ALA_Start",true,false];
sleep 30;
player setVariable ["enableBB_ALA_Start",false,false];
};
};

I have *no* idea if that will work... but feel free to hack around with it. :)

MSFMiller 23 Jul, 2021 @ 6:31am 
Is there any way to use the grace period through the addon instead of through a mission file? i've tried putting a .sqf in the addon's functions folder with the code you provided in the readme, and i have also tried creating a separate addon just for it, but to no avail. the "Resupply grace period" hint works, but doesn't actually make the arsenal option disappear after the 30 seconds.