Search the Community
Showing results for tags 'vvs'.
Found 2 results
-
Hello guys, i´m trying to get the VVS to spawn the vehicles on the diferent decks of the ATLAS LHD I have tried following the steps on this post that had the exactly same issue, but on the Nimitz. Can anyone help me do it? Like on a STEP by STEP. Thank you in advance. My idea: Flight deck: Air Vehicles Middle Deck: Light Vehicles Bottom Deck: Heavy Vehicles and Boats EDIT: I have seen this video and downloaded the mission but I don´t understand all the boxes and stuff.
-
variable working to strange. Help me.
ins3821 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
variable working to strange. when I try test, "IF" not find variable(Armed_car, APC). but another variable(Car, Air, Ship, Autonomous, heli, AH, po etc) is very good finded. so i very confuse. is anyone familiar with this problem? private["_filter","_ret","_vehicleList"]; _filter = [_this,0,"",[""]] call BIS_fnc_param; systemChat format["%1",_filter]; //test <<------------------- good find here but if(_filter == "") exitWith {[]}; //can't find here. <<------------------- here cant find //Setup our array. _ret = []; _vehicleList = switch(_filter) do { case "All": {(VVS_pre_Car + VVS_pre_Air + VVS_pre_Ship + VVS_pre_Armored + VVS_pre_Support + VVS_pre_Autonomous + VVS_pre_Heli + VVS_pre_bigsusong + VVS_pre_AH + VVS_pre_po + VVS_pre_Cas + VVS_pre_armed_car + VVS_pre_APC)}; case "Car": {VVS_pre_Car}; case "Armed_car": {VVS_pre_armed_car}; case "APC": {VVS_pre_APC}; case "Air": {VVS_pre_Air}; case "Ship": {VVS_pre_Ship}; case "Armored": {VVS_pre_Armored}; case "Autonomous": {VVS_pre_Autonomous}; case "Support": {VVS_pre_Support}; case "Heli": {VVS_pre_Heli}; case "bigsusong": {VVS_pre_bigsusong}; case "AH": {VVS_pre_AH}; case "po": {VVS_pre_po}; case "Cas": {VVS_pre_Cas}; default {[]}; };