Start text - Global-Conflicts-ArmA/Olsen-Framework-Arma-3 GitHub Wiki
Description
The start_text module allows mission makers to create a starting text in the bottom right hand corner of the screen at mission start, that displays custom text, date, and time.
This is good for mission introductions, production value.
Usage
- Go to modules>modules.sqf and enable the start_text module.
- Go to modules>start_text>settings.sqf.
Within the settings.sqf file you'll see the following
GVAR(START_TEXT_DELAY) = 10;
- A delay in seconds until the text appears.
Each block of code here in the setting file is for each side/team in order of blufor, opfor, indfor, and civofor.
GVAR(START_TEXT_ARRAY_BLUFOR) = [
["TITLEQUOTE", "BLUFOR Time"],
["TEXT", "Somewhere in Kavala"],
["DATETIME"]
];
BLUFOR Time
- The main title text that appears at the top of all other text. Typically this is your mission name.
Somewhere in Kavala
- Follow on smaller text below, typically is the location.
DATETIME
- This will display the date and time. You can display just the date or time with DATE
or TIME
.