COALITION Wiki Breakthrough

Breakthrough

From COALITION Wiki
Revision as of 11:13, 25 June 2024 by Geekx (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Step 1 - The Play Area:

Find the area where you want the mission to take place, this could be a town or towns, a series of buildings or a forested area.

The important thing is it has two large-ish areas for you to place down the BLUFOR and OPFOR groups, along with a reasonably large area of space between them.

Step 2 - The Objective:

Next, you have to place down the objective trigger.

How to add breakthrough mission trigger:

1) add `BaseFactionTrigger` from the create menu.

2) set name to `endTrig`.

3) set Faction Trigger (listed in the faction manager).

4) set trigger shape to Sphere.

5) set sphere radius to desired size, default is 150.

6) click the + icon next to script, scroll down to the folder `BaseGameTriggerEntity` and select `OnActivate` and use enter the code below (you can only type in a certain area so you only need from `SCR_PopUpNotification` to the end of the line.

class endTrig_Class: SCR_BaseFactionTriggerEntity 
{
	override void OnActivate(IEntity ent)
	{
		SCR_PopUpNotification.GetInstance().PopupMsg("<atk> forces have made it through <name>!", 10, "<atk> Victory");
	}

};

7) add the marker on the trigger, make sure it's inside the play area.

Step 3 - BLUFOR and OPFOR:

Place down BLUFOR and OPFOR and the markers for their spawn point. Make sure the Attackers have more than the Defenders and that the Attackers have at least one major force multiplier like an M113A3 or a Humvee.

Step 4 - Place Game Zone Markers:

Place down the game zone markers around the game area. Ensure you add something outside the game zone to punish players for leaving it.

Step 5 - Place down Defender Safe Start Markers:

Place down the markers for the Defender Safe Start region so that the defenders know how far they can go.

Step 6 - Place down fortifications:

Place down a series of fortifications so that the defenders can use them to their advantage.

Conclusion:

This guide is now finished, move on to the Final Steps page to finish up.