Jump to content

Airwolf

Member
  • Content Count

    554
  • Joined

  • Last visited

  • Medals

Posts posted by Airwolf


  1. Cinematic I made for my gaming unit.

     

    Some Mods Shown - ACE3, VSM Gear Pack, EricJ UH60, Firewill F16, RHS, Konyo MH47, CUP Terrains, GOS Gunkizli, SMA Weapons, Spec 4 vests.

     

    Hope you enjoy!

     

    • Like 2

  2. I would like to change the dispersion of the helicopter miniguns. I'm sure there is a variable in the config but I can't find it. I've searched and found various posts on this  topic but no definitive answer. I just want to remove the laser like qualities of most of these weapons. I'm happy doing it as a mod where I reference the base class with adjusted weapon values, I just need to know which value controls it.

     

    Thank you.


  3. I'm trying to fix a Helicopter so that it rolls on the ground, it's an arma 2 blackhawk port much like the others out there but it stops dead when it hits the ground and won't roll.

     

    The wheels are defined in the config with

    		driveOnComponent[]=
    		{
    			"gear_1",
    			"gear_2",
    			"gear_3"
    		};
    

    Is there anything else that needs to be defined to make the wheels roll, or atleast act like a low friction component?

     


  4. Request: Can you nake a variant of your uniform with the collar up like you have shown, with nomex flight gloves instead of the blackhawk style gloves?

    Id like to get a good pilot uniform going but we lack a good flight suit model with the right gloves. The army air crew uniform is basically what you have made just with different gloves.

    Thanks!


  5. It happened before the magazine script, it also happens when i make a "filtered arsenal" using the ACE/Ares presets in 3d editor and zeus.

     

    When the players go to load a kit, it freezes the game for about 20-30 seconds.

    I also tried removing the magazine script and doing it manually, it still freezes the game, so it's not the custom lookup, it's the act of whitelisting that is causing the freeze. 

     

    I have been on other servers before though with white listed arsenals and not ran into this. Any idea what the issue could be?

     

    Thanks!


  6. Thanks Kylania,

     

    Only issue I am having now is that when you click the "load" button, it takes a bit to bring up the arsenal, usually kicking people from the task force radio channel on our teamspeak server and then bringing them back in due to the game freezing.

     

    Any idea why this is? I'm guessing it's because they have to load the script each time they access the arsenal, is there a better solution?

     

    Thank you.


  7. I'm trying to open some p3ds in object builder, not for the purpose of modifying, but I need to find the names of certain components.

     

    The wiki (https://community.bistudio.com/wiki/Object_Builder) says that you can open binarized p3ds to view these things, but it just crashes when i try to open them.

     

    Is there another way I can view the named properties and LODs? I don't need to modify the model.

     

    Thank you.


  8. I'm working on a helicopter config to enable advanced flight model, i've defined the class, and i've got the code as follows:

    		class RotorLibHelicopterProperties: RotorLibHelicopterProperties
    		{
    			RTDconfig="A3\Air_F_Beta\Heli_Transport_01\RTD_Heli_Transport_01.xml";
    			autoHoverCorrection[]={3,2.45,0};
    			defaultCollective=0.625;
    			retreatBladeStallWarningSpeed=85.556;
    			maxTorque=1100;
    			stressDamagePerSec=0.0033333332;
    			maxHorizontalStabilizerLeftStress=10000;
    			maxHorizontalStabilizerRightStress=10000;
    			maxVerticalStabilizerStress=10000;
    			horizontalWingsAngleCollMin=0;
    			horizontalWingsAngleCollMax=0;
    			maxMainRotorStress=200000;
    			maxTailRotorStress=25000;
    			rtd_center="rtd_center";
    		};
    

    Advanced flight model is working, but on standard flight model the helicopter acts as if the wheel brake is on (which it can't be because that option doesn't exist in standard)

    So what happens when you land is that the helicopter lurches forward and stops.

     

    I really don't care about AFM, what i'm trying to make work is the rolling landing part in standard flight model, which I thought was part of AFM.

     

    Hope someone can help.

     

    Thank you,


  9. I've seen this done in other uniform packs, where they have re skinned the TFAR radio packs or made new radio packs that act as long range radios. I have been unable to find the appropriate config to make this happen, I've tried pulling apart said mods to find the code, and found nothing other than a reference to the TFAR model. I cannot find any information on the TFAR webpage either.

     

    Please help!

     

    Thank you.


  10. This is the full script.

    //Init stuff
    _crate = _this select 0;
    ["AmmoboxInit",[_crate,false,{true}]] spawn BIS_fnc_arsenal;
    
    //Lists of items to include
    _availableHeadgear = [
    	"UNS_Boonie_OD",
    	"UNS_Boonie_OD2",
    	"UNS_Boonie_ODF",
    	"UNS_Boonie_ODP",
    	"UNS_Boonie_DK",
    	"UNS_Boonie_DKF",
    	"UNS_Boonie_ERDL",
    	"UNS_Bandana_OD",
    	"UNS_Bandana_OD2",
    	"UNS_USMC_Cover",
    	"UNS_M1_9A",
    	"UNS_M1_8A",
    	"UNS_M1_7A",
    	"UNS_M1_6A",
    	"UNS_M1_5A",
    	"UNS_M1_4A",
    	"UNS_M1_3A",
    	"UNS_M1_2A",
    	"UNS_M1_1A",
    	"UNS_M1_17",
    	"UNS_M1_16",
    	"UNS_M1_15",
    	"UNS_M1_14",
    	"UNS_M1_13",
    	"UNS_M1_12",
    	"UNS_M1_11",
    	"UNS_M1_10",
    	"UNS_M1_9",
    	"UNS_M1_8",
    	"UNS_M1_7",
    	"UNS_M1_6",
    	"UNS_M1_5",
    	"UNS_M1_4",
    	"UNS_M1_3",
    	"UNS_M1_2",
    	"UNS_M1_1",
    	"UNS_M1_AFT",
    	"UNS_M1_MP",
    	"UNS_M1_SP",
    	"UNS_M1_PBR",
    	"UNS_M1_1V1",
    	"UNS_M1_1V2",
    	"UNS_M1_1V1N",
    	"UNS_M1_1V3",
    	"UNS_M1_1V4",
    	"UNS_M1_1V5",
    	"UNS_M1_1V6",
    	"UNS_M1_1V7",
    	"UNS_M1_1V8",
    	"UNS_M1_1RM",
    	"UNS_TC_1",
    	"UNS_TC_2",
    	"UNS_HP_Helmet",
    	"UNS_JP_Helmet",
    	"UNS_JP_Helmet2",
    	"UNS_Headband_OD",
    	"UNS_Headband_OD2",
    	"UNS_Headband_ED",
    	"UNS_Headband_BK",
    	"H_Bandanna_gry",
    	"H_Bandanna_blu",
    	"H_Bandanna_cbr",
    	"H_Bandanna_khk_hs",
    	"H_Bandanna_khk",
    	"H_Bandanna_sgg",
    	"H_Bandanna_sand",
    	"H_Bandanna_surfer",
    	"H_Bandanna_surfer_blk",
    	"H_Bandanna_surfer_grn",
    	"H_Bandanna_camo",
    	"usm_bdu_boonie_blk",
    	"usm_bdu_boonie_blu",
    	"usm_bdu_boonie_erdl",
    	"usm_bdu_boonie_gry",
    	"usm_bdu_boonie_odg",
    	"usm_bdu_boonie_portliz",
    	"usm_bdu_boonie_tgrstp",
    	"usm_bdu_boonie_wdl",
    	"usm_bdu_cap_blk",
    	"usm_bdu_cap_blu",
    	"usm_bdu_cap_erdl",
    	"usm_bdu_cap_gry",
    	"usm_bdu_cap_odg",
    	"usm_bdu_cap_portliz",
    	"usm_bdu_cap_tgrstp",
    	"usm_bdu_cap_wdl",
    	"usm_bdu_8point_blk",
    	"usm_bdu_8point_blu",
    	"usm_bdu_8point_erdl",
    	"usm_bdu_8point_gry",
    	"usm_bdu_8point_odg",
    	"usm_bdu_8point_portliz",
    	"usm_bdu_8point_tgrstp",
    	"usm_bdu_8point_wdl",
    	"usm_bdu_8point_wdl_m",
    	"usm_bdu_blk",
    	"usm_bdu_odg",
    	"usm_bdu_w",
    	"usm_bdu_w_m",
    	"H_Watchcap_blk",
    	"rhs_beanie_green",
    	"H_Watchcap_cbr",
    	"rhs_beanie",
    	"H_Watchcap_camo",
    	"H_Watchcap_khk",
    	"H_Beret_blk",
    	"H_Beret_02",
    	"H_Beret_Colonel",
    	"H_Booniehat_khk_hs",
    	"H_Booniehat_khk",
    	"H_Booniehat_oli",
    	"H_Booniehat_tan",
    	"rhsgref_Booniehat_alpen",
    	"rhs_Booniehat_m81",
    	"H_Cap_blk",
    	"H_Cap_grn",
    	"H_Cap_oli",
    	"H_Cap_surfer",
    	"H_Cap_tan",
    	"H_Cap_khaki_specops_UK",
    	"H_Cap_usblack",
    	"DAR_Stetson",
    	"H_HelmetCrew_I",
    	"FIR_GroundCrew_Headset",
    	"FIR_GroundCrew_Headset2",
    	"H_PilotHelmetHeli_O",
    	"H_PilotHelmetHeli_B",
    	"FIR_USHelmetType1_Black_Close",
    	"FIR_USHelmetType1_Navy_Black_Close",
    	"FIR_USHelmetType1_USMC_Black_Close",
    	"FIR_USHelmetType1_Black_Open",
    	"FIR_USHelmetType1_Navy_Black_Open",
    	"FIR_USHelmetType1_USMC_Black_Open",
    	"FIR_USHelmetType1_Clear_Close",
    	"FIR_USHelmetType1_Navy_Clear_Close",
    	"FIR_USHelmetType1_USMC_Clear_Close",
    	"FIR_USHelmetType1_Clear_Open",
    	"FIR_USHelmetType1_Navy_Clear_Open",
    	"FIR_USHelmetType1_USMC_Clear_Open",
    	"FIR_USHelmetType1_Navy_Night",
    	"FIR_USHelmetType1_Night",
    	"FIR_USHelmetType1_USMC_Night",
    	"H_CrewHelmetHeli_O",
    	"H_CrewHelmetHeli_B",
    	"H_Cap_marshal",
    	"H_Cap_headphones"
    ];
    
    _availableGoggles = [
    	"G_Aviator",
    	"rhs_balaclava",
    	"G_Balaclava_blk",
    	"G_Balaclava_oli",
    	"G_Bandanna_aviator",
    	"G_Bandanna_blk",
    	"G_Bandanna_khk",
    	"G_Bandanna_oli",
    	"G_Bandanna_tan",
    	"rhs_scarf",
    	"G_Spectacles",
    	"G_Squares_Tinted",
    	"G_Squares",
    	"G_Spectacles_Tinted"
    ];
    
    _availableUniforms = [
    	"UNS_ARMY_BDU",
    	"UNS_ARMY_BDU_65",
    	"UNS_ARMY_BDU_F",
    	"UNS_DUCK_BDU",
    	"UNS_Pilot_BDU",
    	"UNS_JPilot_BDU",
    	"UNS_PBR_Flak",
    	"UNS_PBR_Flak_S",
    	"UNS_NZ_ARMY_BDU",
    	"UNS_USMC_BDU",
    	"UNS_USMC_BDU_65_2",
    	"UNS_USMC_BDU_65",
    	"UNS_USMC_BDU_S",
    	"UNS_USMC_Flak_E",
    	"UNS_USMC_Flak_ES",
    	"UNS_USMC_Flak",
    	"UNS_USMC_Flak_F",
    	"UNS_USMC_Flak_S",
    	"UNS_USMC_FLAK_65",
    	"UNS_USMC_FLAK2_65",
    	"UNS_USMC_LERDL",
    	"FIR_Fighter_Pilot_Nomex3",
    	"FIR_Fighter_Pilot_Nomex4",
    	"FIR_Fighter_Pilot_JASDF_Nomex3",
    	"FIR_Fighter_Pilot_JASDF_Nomex4",
    	"usm_bdu_blk",
    	"usm_bdu_odg",
    	"usm_bdu_w",
    	"usm_bdu_w_m",
    	"U_BG_Guerrilla_6_1",
    	"U_BG_Guerilla1_1",
    	"U_BG_Guerilla2_2",
    	"U_BG_Guerilla2_1",
    	"U_BG_Guerilla2_3",
    	"U_BG_Guerilla3_1",
    	"U_BG_leader",
    	"U_B_HeliPilotCoveralls",
    	"U_C_HunterBody_grn",
    	"rhsgref_uniform_alpenflage",
    	"rhsgref_uniform_flecktarn",
    	"rhsgref_uniform_tigerstripe",
    	"rhsgref_uniform_reed",
    	"rhsgref_uniform_woodland",
    	"rhsgref_uniform_woodland_olive",
    	"U_O_PilotCoveralls",
    	"U_B_PilotCoveralls",
    	"U_C_WorkerCoveralls"
    ];
    
    _availableVests = [
    	"UNS_M1956_A1",
    	"UNS_M1956_A10",
    	"UNS_M1956_A11",
    	"UNS_M1956_A12",
    	"UNS_M1956_A2",
    	"UNS_M1956_A3",
    	"UNS_M1956_A4",
    	"UNS_M1956_A5",
    	"UNS_M1956_A6",
    	"UNS_M1956_A7",
    	"UNS_M1956_A8",
    	"UNS_M1956_A9",
    	"UNS_JP_Vest",
    	"UNS_FLAK",
    	"UNS_M1956_S1",
    	"UNS_M1956_S2",
    	"UNS_M1956_S3",
    	"UNS_M1956_S4",
    	"UNS_M1956_T1",
    	"UNS_M1956_P1",
    	"UNS_M1956_M1",
    	"UNS_M1956_M10",
    	"UNS_M1956_M11",
    	"UNS_M1956_M12",
    	"UNS_M1956_M13",
    	"UNS_M1956_M14",
    	"UNS_M1956_M15",
    	"UNS_M1956_M16",
    	"UNS_M1956_M17",
    	"UNS_M1956_M18",
    	"UNS_M1956_M19",
    	"UNS_M1956_M2",
    	"UNS_M1956_M3",
    	"UNS_M1956_M4",
    	"UNS_M1956_M5",
    	"UNS_M1956_M6",
    	"UNS_M1956_M7",
    	"UNS_M1956_M8",
    	"UNS_M1956_M9",
    	"usm_vest_LBE_rm",
    	"usm_vest_LBE_rm_m",
    	"usm_vest_LBE_rmp",
    	"usm_vest_LBE_rmp_m",
    	"usm_vest_LBE_gr",
    	"usm_vest_LBE_gr_m",
    	"usm_vest_lbv_gr",
    	"usm_vest_lbv_gr_m",
    	"usm_vest_lbv_mg",
    	"usm_vest_lbv_mg_m",
    	"usm_vest_LBE_mg",
    	"usm_vest_LBE_mg_m",
    	"usm_vest_lbv_rmp",
    	"usm_vest_lbv_rmp_m",
    	"usm_vest_lbv_rm",
    	"usm_vest_lbv_rm_m",
    	"FIR_SaftyVest_Orange",
    	"FIR_SaftyVest_Yellow",
    	"rhs_vest_commander",
    	"FIR_pilot_vest",
    	"rhs_vest_pistol_holster",
    	"V_Rangemaster_belt",
    	"V_BandollierB_blk",
    	"V_BandollierB_cbr",
    	"V_BandollierB_rgr",
    	"V_BandollierB_khk",
    	"V_BandollierB_oli",
    	"V_TacVest_blk",
    	"V_TacVest_brn",
    	"V_TacVest_camo",
    	"V_TacVest_khk",
    	"V_TacVest_oli",
    	"V_Press_F",
    	"usm_vest_pasgt",
    	"usm_vest_pasgt_lbe_gr",
    	"usm_vest_pasgt_lbe_gr_m",
    	"usm_vest_pasgt_lbe_mg",
    	"usm_vest_pasgt_lbe_mg_m",
    	"usm_vest_pasgt_lbe_rmp",
    	"usm_vest_pasgt_lbe_rmp_m",
    	"usm_vest_pasgt_lbe_rm",
    	"usm_vest_pasgt_lbe_rm_m",
    	"usm_vest_pasgt_lbv_gr",
    	"usm_vest_pasgt_lbv_gr_m",
    	"usm_vest_pasgt_lbv_mg",
    	"usm_vest_pasgt_lbv_mg_m",
    	"usm_vest_pasgt_lbv_rmp",
    	"usm_vest_pasgt_lbv_rmp_m",
    	"usm_vest_pasgt_lbv_rm",
    	"usm_vest_pasgt_lbv_rm_m",
    	"usm_vest_rba",
    	"usm_vest_rba_lbe_gr",
    	"usm_vest_rba_lbe_mg",
    	"usm_vest_rba_lbe_rmp",
    	"usm_vest_rba_lbe_rm",
    	"usm_vest_rba_lbv_gr",
    	"usm_vest_rba_lbv_mg",
    	"usm_vest_rba_lbv_rmp",
    	"usm_vest_rba_lbv_rm",
    	"usm_vest_safety"
    ];
    
    _availableBackpacks = [
    	"UNS_Alice_1",
    	"UNS_Alice_2",
    	"UNS_Alice_3",
    	"UNS_Alice_4",
    	"UNS_Alice_5",
    	"UNS_Alice_6",
    	"UNS_Alice_F3",
    	"UNS_Alice_F4",
    	"UNS_Alice_F5",
    	"UNS_Alice_F6",
    	"UNS_Alice_F7",
    	"UNS_Alice_F8",
    	"UNS_Alice_F9",
    	"UNS_ARMY_MED",
    	"UNS_ARMY_RTO",
    	"UNS_SF_RTO",
    	"UNS_BA22_Para",
    	"UNS_NVA_MED",
    	"UNS_NVA_RPG",
    	"UNS_NVA_RTO",
    	"UNS_NVA_R1",
    	"UNS_NVA_RC",
    	"UNS_TROP_R1",
    	"UNS_TROP_R2",
    	"UNS_TROP_R3",
    	"UNS_Alice_F1",
    	"UNS_Alice_F2",
    	"UNS_Alice_FR",
    	"UNS_USMC_MED",
    	"UNS_USMC_E2",
    	"UNS_USMC_E1",
    	"UNS_USMC_E3",
    	"UNS_USMC_RTO",
    	"UNS_USMC_R3",
    	"UNS_USMC_R1",
    	"UNS_USMC_R2",
    	"usm_pack_m5_medic",
    	"usm_pack_200rnd_556_bandoliers",
    	"usm_pack_762x51_bandoliers",
    	"B_Respawn_Sleeping_bag_blue_F",
    	"B_Respawn_Sleeping_bag_brown_F",
    	"B_Respawn_TentDome_F",
    	"B_Respawn_Sleeping_bag_F",
    	"B_Respawn_TentA_F",
    	"B_Carryall_cbr",
    	"B_Carryall_khk",
    	"B_Carryall_oli",
    	"usm_pack_alice",
    	"usm_pack_alice_medic",
    	"RHS_M2_Gun_Bag",
    	"RHS_M2_Tripod_Bag",
    	"rhs_rpg_empty",
    	"tf_rt1523g_black",
    	"tf_rt1523g_fabric",
    	"tf_rt1523g_green",
    	"tf_rt1523g_rhs",
    	"tf_rt1523g_sage",
    	"rhs_sidor",
    	"B_Parachute",
    	"uns_Tripod_Bag",
    	"rhs_assault_umbts",
    	"rhs_assault_umbts_engineer_empty",
    	"uns_ammopack",
    	"uns_MK18_low_US_Bag",
    	"uns_M1_81mm_mortar_US_Bag",
    	"uns_M1919_low_US_Bag",
    	"uns_M2_60mm_mortar_US_Bag",
    	"uns_m2_high_US_Bag",
    	"uns_M2_low_US_Bag",
    	"uns_M30_107mm_mortar_US_Bag",
    	"uns_M60_low_US_Bag"
    ];
    
    _availableWeapons = [
    	"uns_m1garand",
    	"uns_m14"
    ];
    
    _availableMagzines = [
    	""
    ];
    
    
    //Populate with predefined items and whatever is already in the crate
    [_crate,((backpackCargo _crate) + _availableBackpacks)] call BIS_fnc_addVirtualBackpackCargo;
    [_crate,((itemCargo _crate) + _availableHeadgear + _availableGoggles + _availableUniforms + _availableVests)] call BIS_fnc_addVirtualItemCargo;
    [_crate,(magazineCargo _crate)] call BIS_fnc_addVirtualMagazineCargo;
    [_crate,(weaponCargo _crate)] call BIS_fnc_addVirtualWeaponCargo;
    
×