Search the Community
Showing results for tags 'dms'.
Found 2 results
-
DMS - Defent's Mission System
Crito replied to chernaruski's topic in Exilemod (Unofficial)'s Addons
Sharing my A3DMS Missions for Arma 3 Exile. These Missions are set up to use reinforcements on both static and bandit missions. Working vehicle, helicopter, and foot soldiers when a defined number of AI in a group are killed the reinforcements will come in. The helicopter will fly around as gun ship it will not drop troops If you enable it may or may not work right has a mind of its own when doing pardrops. Take a look at the bandit mission blackHawkDown.sqf, static missions Saltflats.sqf, StoptheMayor.sqf, and Chelonisipower.sqf to see the randomization these have to offer. I run these on my server and players like the randomization because it never plays out the same and they dont get use to the same exact stuff at the missions. If you use dms you cannot use just the missions out of here it will not work you need the scripts folder and the missions folder due to the changes I had to make to 2 scripts and all bandit missions to get this all to work. Also In the blackHawkDown.sqf is specific cordinates put in each pos case and it runs of choosing a mission location off of chordinates you put in there instead of the normal bandit mission random locations. I did this because the buildings for this mission do not work well on hills. the cordinates that are there are for Altis map so if you use another map you need to get cordinates put in where you want possible spawns to be. https://github.com/Crito-VanaheimServers/Reworked-A3DMS-Missions- 78 replies
-
- 3
-
- a3dms
- reinforcements
- (and 5 more)
-
DMS Custom Loot generator Script [HELP!!]
RNM-SpaceGhost posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
guys, i tried to find help in exile mod forums but people there dont seem to be as much active as you guys are here. Im posting here to find some help cuz im stuck with this problem for more than a week. here it is: So guys, ive made a custom loot generator for DMS boxes. it runs great on arma 3 editor, but after a weak trying to make it generate loot for DMS boxes i gave up and came here. The thing is, i saw on DMS's fn_fillCrate.sqf script that i can create a custom function and make it spawn the loot for me. But the comments from Defent were not very clear, where should i put my script for dms to read? should i declare it in DMS's config.cpp like its vanila functions? how should i parse the function name in the _crate_loot_values1 variable? a string? is there a pattern for me to create my custom file for my function? Any captain out there to help me with this? I REALLY NEED HELP! ive made the hard part to program how i want the loot to be generated, i know how should i return my function to DMS's accepted pattern. I just dont know where should i put my function, and how DMS is expecting me to call it. DMS's instructions: For example, _weapons could simply be a number, in which case the given number of weapons are selected from "DMS_boxWeapons", or an array as [_wepCount,_weps], where _wepCount is the number of weapons, and _weps is an array of weapons from which the guns are randomly selected. OR: [ _customLootFunctionParams, _customLootFunction ] In this case, "_customLootFunctionParams" is passed to "_customLootFunction", and the custom loot function must return the loot in the form: [ [ weapon1, weapon2, [weapon_that_appears_twice,2], ... weaponN ], [ item1, item2, [item_that_appears_5_times,5], ... itemN ], [ backpack1, backpack2, [backpack_that_appears_3_times,3], ... backpackN ] ] this DMS instructions are located in a3_dms/scripts/fn_fillCrate.sqf ive tried to insert my function like the vanilla functions of DMS in the folder "/scripts" but i got no success, the missions wont spawn 😕 DMS error log says the mission spawned successfully with no errors (but it didnt) thank you guys!