Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Vehicle Requisition Script - Created by Oksman @ Guerrillas of Liberation for Reddit User: u/kiingkiller
- Params:
- 1: ObjNull - Action Object - Flag or Computer for example - Object will spawn 15 meters behind this object.
- Example: [this] execVM "VehicleRequisitionActions.sqf";
- */
- Params ["_ActionObject"];
- /*
- Params for VehicleRequisition:
- 1: ObjNull - Action Object - Flag or Computer for example - Object will spawn 15 meters behind this object.
- 2: String - Classname of Vehicle
- 3: Integer - Cooldown Timer in Seconds
- 4: Integer - Amount of Available Vehicle of Type
- */
- [_ActionObject,"B_MRAP_01_F",15,3] execVM "VehicleRequisition.sqf";
- [_ActionObject,"B_LSV_01_armed_F",15,3] execVM "VehicleRequisition.sqf";
- [_ActionObject,"B_MRAP_01_hmg_F",15,3] execVM "VehicleRequisition.sqf";
- [_ActionObject,"B_APC_Tracked_01_rcws_F",15,3] execVM "VehicleRequisition.sqf";
- [_ActionObject,"B_APC_Wheeled_01_cannon_F",15,3] execVM "VehicleRequisition.sqf";
- [_ActionObject,"B_MBT_01_TUSK_F",15,3] execVM "VehicleRequisition.sqf";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement