Search the Community
Showing results for tags 'How'.
Found 7 results
-
Arma 3 scripting tutorials from gokitty1199/IM SORRY BUFFALO(both me)
gokitty1199 posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Last content update: 6/13/2018 showing how to use the radius for addAction, using params instead of select, adding to arrays with various commands, altering arrays with various commands, get/setUnitLoadout Last content update: 6/10/2018 going through config files and getting details to sort what you want, using radius with addAction, params, and altering arrays with resize, pushBack, pushBackUnique, set, and append and going over to assist with resize count. Last content update: 5/27/2018 added GUI tutorial for how to make a weapon selector using cfgWeapon Last content update: 5/24/2018 added sector control tutorial Last content update: 5/21/2018 This is my arma 3 scripting tutorial series which is aimed to help both people getting into making their own scripts with fairly detailed simple tutorials as well as for the intermediate person looking to create their own features for their missions. The plans for this series is to almost fully cover everything behind the arma 3 missions that people play on a daily basis and have enough content provided in the videos where people can go off and make their own vision for their mission with the knowledge gained. Most of these videos are made on the fly at 1AM-4AM without any pretesting which should give someone the idea of what goes into finding syntax errors and narrowing down a bug that's causing your feature to not function properly. It is also an excuse for you to cut me some slack if you see mistakes :) . A lot of these tutorials are made with multiplayer in mind since I think most people want to play their missions online with their friends(which is why publicVariable has been utilized so much so new people can get a good grasp on the power those commands have). New videos are added to the playlist almost every day so if your stuck with something, maybe it has been covered in a video. If you have any requests on what you would like to see made then please suggest it here. topics covered so far Scripting tutorial playlist Database tutorials with INIDBI2 playlist GUI/Dialog tutorials playlist- 23 replies
-
- 19
-
If i wanted to make a script that requires a satchel to be placed on a radio tower to destroy it, what would be a method i could use? Basically im trying to make it so players cant just shoot it with CAS or Artillery. someone has to physically walk up and place a satchel on the tower to blow it up.
-
I'm playing Solo, hit Quick Play and then in the pregame booster screen with all the players, I see two out of the ten fellow players have a blue plus icon in the corner of their picture. Later in game these two players killed me and I proceeded to spectate this duo kill others, scoop the crate, and both escape with their lives. I haven't been able to find any official rules or game descriptions to explain how two people teamed up in Solo; is this allowed or is it a glitch, etc etc?
-
arma3 Arma 3 Editor, How to spawn object/walls/groups of entities etc with a Trigger.
warlord3037 posted a topic in ARMA 2 & OA : MISSIONS - Editing & Scripting
Okay. Hey peoples, one of my first threads here pleading for Help!!! I have been working on a CQB, VR Map for quite a long time now using VR blocks only. Now, I have different rooms from the start to finish that increase in difficulty and each stage is marked by colored arrows that point the direction of the finish area. ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- So what I have done is I have used large amounts of 1x1x1 VR Blocks, to build walls, towers, roofs, balconies, cover etc. My idea was to have previously cleared stages blocked off by different shaped walls of VR blocks, once the player hit the next stage's trigger that is. ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- My go-to solution for this was to make a wall of blocks that separates stages 1 and 2 or Blue and Light Blue, Then set all the VR blocks conditions to false so that they would not be there on mission start and then create a trigger out of sight around a corner or something so as the player enters the trigger some magic VR wall appears in the previous stage so that the player can't go back to mission start and basically Re-Kit themselves with anything they want, before going back to finish off stages. I Just don't no how to tell the trigger to make the conditions of the sync'd VR blocks back to true once the trigger owner steps into the trigger. I really appreciate any help i get, Steam Name: Warlord I've been searching forums to no avail. I have thousands of hours of editor experience and not much to show for it so any other tips or anything will be incredibly helpful thank you so much everyone!! I have images of the Map but i can't post them here :( -
onUnsignedData = "kick (_this select 0)"; // unsigned data detected This is what I use to kick players who do not have the right signatures. However, they are shown this when they are kicked: "You were kicked from the server." How do I change that message to "You do not have the right signatures" ?
-
VTOLPitchInfluence has no effect on plane.. help
psrkallez06 posted a topic in ARMA 3 - ADDONS - CONFIGS & SCRIPTING
I'm trying to make the superhornet plane into a VTOL by reading this: https://community.bistudio.com/wiki/A3_CfgVehicles_Plane_class_config_reference#VTOLPitchInfluence So i have added VTOL=3 in the config and it works fine, but the plane is turning really slow in hover mode so i tried: VTOLPitchInfluence=500.0; VTOLRollInfluence=500.0; VTOLYawInfluence=500.0; That should in theory make the plane turn like CRAZY. but nothing happens once I'm ingame.. I tried changing the same parameters on the Apex VTOL and it works on that one (it turns like crazy) Can someone give me some pointers on why this is? Cheers! -
I just got back in to making Arma 3 missions and I found the anvil editor which is like a beefed up MCC mission maker. The only problem is there are very few advanced tutorials out there and I cannot figure out how to change which faction spawns in the objective zone. I looked through all the .sqf files and found one that defined the factions then it had open blank templates to add your own faction but I don't know how to go about adding an addon faction such as ChDKZ or any of the factions from the rhs_afrf3 mod. // ADD CLASSNAMES if (_faction==5) then { _InfPool= []; _ArmPool= []; _MotPool= []; _ACHPool= []; _CHPool= []; _uavPool= []; _stPool= []; _shipPool= []; _diverPool= []; _crewPool= []; _heliCrew= []; }; and here's and example of the CSAT one that's already in here. // EAST CSAT FACTION if (_faction==0) then { _InfPool= ["O_SoldierU_SL_F","O_soldierU_repair_F","O_soldierU_medic_F","O_sniper_F","O_Soldier_A_F","O_Soldier_AA_F","O_Soldier_AAA_F","O_Soldier_AAR_F","O_Soldier_AAT_F","O_Soldier_AR_F","O_Soldier_AT_F","O_soldier_exp_F","O_Soldier_F","O_engineer_F","O_engineer_U_F","O_medic_F","O_recon_exp_F","O_recon_F","O_recon_JTAC_F","O_recon_LAT_F","O_recon_M_F","O_recon_medic_F","O_recon_TL_F"]; _ArmPool= ["O_APC_Tracked_02_AA_F","O_APC_Tracked_02_cannon_F","O_APC_Wheeled_02_rcws_F","O_MBT_02_arty_F","O_MBT_02_cannon_F"]; _MotPool= ["O_Truck_02_covered_F","O_Truck_02_transport_F","O_MRAP_02_F","O_MRAP_02_gmg_F","O_MRAP_02_hmg_F","O_Truck_02_medical_F"]; _ACHPool= ["O_Heli_Attack_02_black_F","O_Heli_Attack_02_F"]; _CHPool= ["O_Heli_Light_02_F","O_Heli_Light_02_unarmed_F"]; _uavPool= ["O_UAV_01_F","O_UAV_02_CAS_F","O_UGV_01_rcws_F"]; _stPool= ["O_Mortar_01_F","O_static_AT_F","O_static_AA_F"]; _shipPool= ["O_Boat_Armed_01_hmg_F","O_Boat_Transport_01_F"]; _diverPool= ["O_diver_exp_F","O_diver_F","O_diver_TL_F"]; _crewPool= ["O_crew_F"]; _heliCrew= ["O_helicrew_F","O_helipilot_F"]; };