Advertisement
OksmanTV

Untitled

Jul 15th, 2022
987
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 1.04 KB | None | 0 0
  1.  
  2. /*
  3.     Vehicle Requisition Script - Created by Oksman @ Guerrillas of Liberation for Reddit User: u/kiingkiller
  4.  
  5.     Params:
  6.     1: ObjNull - Action Object - Flag or Computer for example - Object will spawn 15 meters behind this object.
  7.  
  8.     Example: [this] execVM "VehicleRequisitionActions.sqf";
  9. */
  10.  
  11. Params ["_ActionObject"];
  12. /*
  13.     Params for VehicleRequisition:
  14.     1: ObjNull - Action Object - Flag or Computer for example - Object will spawn 15 meters behind this object.
  15.     2: String - Classname of Vehicle
  16.     3: Integer - Cooldown Timer in Seconds
  17.     4: Integer - Amount of Available Vehicle of Type
  18. */
  19.  
  20. [_ActionObject,"B_MRAP_01_F",15,3] execVM "VehicleRequisition.sqf";
  21. [_ActionObject,"B_LSV_01_armed_F",15,3] execVM "VehicleRequisition.sqf";
  22. [_ActionObject,"B_MRAP_01_hmg_F",15,3] execVM "VehicleRequisition.sqf";
  23. [_ActionObject,"B_APC_Tracked_01_rcws_F",15,3] execVM "VehicleRequisition.sqf";
  24. [_ActionObject,"B_APC_Wheeled_01_cannon_F",15,3] execVM "VehicleRequisition.sqf";
  25. [_ActionObject,"B_MBT_01_TUSK_F",15,3] execVM "VehicleRequisition.sqf";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement