Skip to content

Commit

Permalink
Fix intro titles
Browse files Browse the repository at this point in the history
Try to replace intro text method

Try to use only cutText title

Fix intro text

Fix ; typos

Another try

AGAIN

3011

CRAZY FUCKIN SHIT

2 sec plus

Last try
  • Loading branch information
ViRGiL175 committed Jul 15, 2021
1 parent 9f98fcb commit 5c5ecc6
Showing 1 changed file with 18 additions and 15 deletions.
33 changes: 18 additions & 15 deletions init.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -307,12 +307,6 @@ if (!isNull player) then {
}
else {
sleep 0.4;
if (_showIntro) then {
["<t size='0.9'>" + "Engima of Ostgota Ops" + "</t>", 0.02, 0.3, 2.4, -1, 0, 3010] spawn bis_fnc_dynamicText;
["<t size='0.9'>" + "Iceman" + "</t>", 0.02, 0.3, 2, -1, 0, 3010] spawn bis_fnc_dynamicText;
["<t size='0.9'>" + "HulaZone Team" + "</t>", 0.02, 0.3, 1, -1, 0, 3010] spawn bis_fnc_dynamicText;
["<t size='0.9'>" + "and qazpos presents" + "</t>", 0.02, 0.3, 2.4, -1, 0, 3010] spawn bis_fnc_dynamicText;
};

if (isMultiplayer) then {
player setPos [(drn_startPos select 0) + (random 4) - 2, (drn_startPos select 1) + (random 6) - 3, 0];
Expand All @@ -328,19 +322,28 @@ if (!isNull player) then {
sleep 0.1;
};

if (_showIntro) then {
if (_showIntro) then {
0 cutText ["", "BLACK FADED"];
sleep 2.75;
// [text, x, y, duration, fadeInTime, deltaY, rscLayer] spawn BIS_fnc_dynamicText;
["<t size='0.9'>" + "Engima of Ostgota Ops" + "</t>", 0, 0.3, 1.0, 0.5, 0, 3011] spawn BIS_fnc_dynamicText;
0 cutText ["", "BLACK FADED", 0];
sleep 3.4;
0 cutText ["", "BLACK FADED"];
sleep 1.75;

["<t size='0.9'>" + "Escape Chernarus" + "</t>", 0.02, 0.3, 2, -1, 0, 3011] spawn bis_fnc_dynamicText;

["<t size='0.9'>" + "Iceman" + "</t>", 0, 0.3, 1.0, 0.5, 0, 3011] spawn BIS_fnc_dynamicText;
0 cutText ["", "BLACK FADED", 0];
sleep 3.0;
0 cutText ["", "BLACK FADED"];
sleep 1.75;
["<t size='0.9'>" + "HulaZone Team" + "</t>", 0, 0.3, 1.0, 0.5, 0, 3011] spawn BIS_fnc_dynamicText;
0 cutText ["", "BLACK FADED", 0];
sleep 3.0;
0 cutText ["", "BLACK FADED"];
sleep 1.75;

["<t size='0.9'>" + "and qazpos presents" + "</t>", 0, 0.3, 1.0, 0.5, 0, 3011] spawn BIS_fnc_dynamicText;
0 cutText ["", "BLACK FADED", 0];
sleep 3.4;
0 cutText ["", "BLACK FADED"];
["<t size='0.9'>" + "Escape Chernarus" + "</t>", 0, 0.3, 2.0, 0.5, 0, 3011] spawn BIS_fnc_dynamicText;
0 cutText ["", "BLACK FADED", 0];
sleep 3.0;
0 cutText ["", "BLACK FADED"];
["Somewhere in Chernarus", str (date select 2) + "/" + str (date select 1) + "/" + str (date select 0) + " " + str (date select 3) + ":00"] spawn BIS_fnc_infoText;
};
Expand Down

0 comments on commit 5c5ecc6

Please sign in to comment.