#include "..\do_not_edit\script_component.hpp" /* * Author: Kresky, Jonpas * Adds briefing based on side. * Call from initPlayerLocal.sqf. * Copy to other side briefings if you want to add briefings to those sides. * * Arguments: * 0: Player * * Return Value: * None * * Example: * [player] call FUNC(briefing); * * New Line: *
* * Text Colour (Hex colour Code) * TEXT HERE * * Clickable Marker Link: * MARKER_TEXT * * Image: * */ params ["_player"]; switch (side _player) do { // BLUFOR briefing case west: { }; // OPFOR briefing case east: { }; // RESISTANCE/INDEPENDENT briefing -- THIS IS THE BRIEFING YOU WANT TO EDIT FOR YOUR MISSION! case resistance: { _player createDiaryRecord ["Diary", ["Employer", "
Republic of Karellia "]]; _player createDiaryRecord ["Diary", ["Situation", "
ENEMY FORCES:
PMC Wagner

FRIENDLY FORCES:
Synixe Contractors

CIVILIAN CONSIDERATIONS:
Mostly evacuated, very few civilians remain. "]]; _player createDiaryRecord ["Diary", ["Mission", "
We have been hired to destroy communications towers in a region that has fallen to PMC Wagner.

We will have access to frequency detection equipment in order to locate the towers. "]]; }; // CIVILIAN briefing case civilian: { }; };