How to Modify END option in Arma 3

In this tutorial I will explain how to modify the triggers END option in arma 3 editor.

VIDEO EXAMPLE

Bear in mind that this is just for END1, but you can use it for any of END# (END1 trough END6) just change the value in the code.
  • The code for the description.ext is below, just copy, paste and add your text in title and description
class CfgDebriefing
{
 class End1
 {
  title = "";
  subtitle = "";
  description = "";
  pictureBackground = "";
  picture = "b_inf";
  pictureColor[] = {0.0,0.3,0.6,1};
 };
};

How to use Strategic Map in Arma 3

This is one cool feature of Arma 3 modules. I love to put this in my campaigns and mission, to create a story line with multiple combat tasks. The mission with a strategic map in it looks more professional and gives a player more freedom and not a boring need to do NOW gameplay. This is the most simple trick you can use in arma 3 editor, and it looks amazing

VIDEO EXAMPLE

The code used in this example is:
  • player setPos (_this select 0);
Do not forget to put the CODE in every mission of the Strategic map on the ON ACTIVATION field

How to create a Task in Arma 3

Example how to use Task Module option in Arma 3 editor. I show here how to synchronize tasks with trigger, and how to start a new Task by ending the previous one. Also at the end of the tutorial, I will show you a case on how to end a task by killing a unit.

VIDEO EXAMPLE

Guys sorry for a bit long tutorial, and I sincerely apologize for my mistakes in creating a tutorial...that is the way it goes when I make a tutorial without preparation LOL.
! ! ! ATTENTION ARMA 3 EDITOR BEGINNERS  ! ! !
For a beginners in arma editor, be sure to watch tutorial all the way through...you will learn a great deal of tricks.

Arma 3 Campaign VUman War - Part 4

Part 4 of Vuman Campaign in Arma 3.

Arma 3 Campaign VUman War - Part 4

Now we are getting serious in Arma 3 Campaign creation. Now this is what you get when you combine all of my tutorials...and this is only the beginning. You can do a lot more if you combine my tutorials and your imagination for making your missions and campaigns...

Arma 3 Campaign VUman War - Part 3

Part 3 of my Vuman War Campaign in Arma 3

Arma 3 Campaign VUman War - Part 3

This part is called Assault on Girna.

Arma 3 Campaign VUman War - Part 2

Part 2 of my Arma 3 Campaign VUman War.

Arma 3 Campaign VUman War - Part 2

Keep in mind that this campaign is mostly made for tutorial purposes

Arma 3 Radio Chat Crazy part two

Another great way to use Arma 3 Radio chat protocol. This one is a communication between Radio tower operator and pilot of Helicopter. AI telling a joke over the Radio Channel

ARMA 3 CRAZY RADIO CHAT #2

Arma 3 Radio Chat Crazy

Arma 3 Funny Radio chat moments that I made in my days of boredom. Must see !!!

ARMA 3 CRAZY RADIO CHAT #1

"And that is all I have to say about that" .... as FOREST GUMP say LOL ! ! !

Helicopter Extraction no buggy stuff ! ! !

This is a one of correct ways to do Arma 3 editor Helicopter Extraction with no buggy stuff. But I have to mention that this method is known to fail if using some of the attack helicopters for extraction purpose. I recomend using AH-9 Pawnee, MH-9 Hummingbird or a big type of helicopter like UH-80 Ghost Hawk for bigger crew. This example code is with no bug in it, and it is always performed 100% accurate. The evacuation helicopter will always perform extraction no matter what.

VIDEO EXAMPLE
*Create extraction Helicopter and put codes below in his waypoints like I did in Video Tutorial

  • ON ACT code in waypoint - with waypoint LOAD option type: dostop evac; evac land "land"
  • ON CONDITION of waypoint with option MOVE type: ((!alive unit1) or (unit1 in evac)) and ((!alive unit2) or (unit2 in evac))...and so on...for other unit.