Search the Community
Showing results for tags 'howto'.
Found 2 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
-
How to make a static weapon shoot a far away target
Mr_Sideburns posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hello ! I'm creating a mission in wich an Ai mortar team has to shoot a target located in an other area of the town. I've tried many things without succeeding. To try to figure out my problem, in a simplier scenario, I made a soldier shoot a car with this : team1 reveal car1; soldier doTarget car1; soldier dofire car1; ps : it work fine with a trigger, but the car must not be hidden from the soldier's view Then I tried placing the soldier in a mortar or a DShKM UAZ. He targeted the car but didn't shoot. So where the problem comes from according to you ? Am I missing a command somewhere ? Must the unit see it's target ? Thanks for your answers !