Skip to content

Manticore-Operations/qrf_script

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Arma 3 QRF script

This script was made for Manticore Operations to be used in their community missions and events.

Usage

Place the scripts folder into the root of your mission file where mission.sqm is located.

Call the script through triggers or code.

Trigger example:

call{_units = ["I_Soldier_SL_F","I_soldier_F","I_Soldier_LAT_F","I_Soldier_M_F","I_Soldier_TL_F","I_Soldier_AR_F","I_Soldier_A_F","I_medic_F"];
[_units, "B_Truck_01_covered_F", "start", "destination"] execVM "scripts\qrfTruck.sqf";}

Parameters

Check the code for more detailed explanation of required variable types.

The 1st parameter is an array of the units you want to load into the vehicle. These units will be dismounting once the waypoint has been reached. You can get this in Eden by pressing mouse 2 and selecting Log -> Log Classes to Clipboard. Just remember to add the quotes.

For ease of use it's usually worthwhile to assign these to a separate variable and pass it to the function (check above for example).

_units = ["I_Soldier_SL_F","I_soldier_F","I_Soldier_LAT_F","I_Soldier_M_F","I_Soldier_TL_F"];

The 2nd parameter is the type of vehicle you want to use. You can get this in Eden by pressing mouse 2 and selecting Log -> Log Classes to Clipboard. Just remember to add the quotes. Keep in mind if no 4th parameter is provided the side of the units will be determined by the vehicle!

"B_Truck_01_covered_F"

The 3rd parameter is the spawn location of the vehicle while the The 4th parameter is the drop off location. Both can be position arrays or markers (variable name).

[100,200,100] //Position array
"spawn1" // Markername

The 4th parameter is optional and will determine the side of the units. If no side is given it will be determined by the vehicle class!

blufor, opfor, independent, civilian

About

Arma 3 QRF script for Manticore Operations.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages