mirror of
https://github.com/Fallingsheep1985/Arma3Epoch.git
synced 2024-08-30 16:42:12 +00:00
20 lines
495 B
Plaintext
20 lines
495 B
Plaintext
//VEMF Missions
|
|
if (!isDedicated) then {
|
|
"VEMFChatMsg" addPublicVariableEventHandler {
|
|
systemChat ((_this select 1) select 0);
|
|
[
|
|
[
|
|
[((_this select 1) select 0),"align = 'center' size = '1' font='PuristaBold'"],
|
|
["","<br/>"],
|
|
[((_this select 1) select 1),"align = 'center' size = '0.5'"]
|
|
]
|
|
] spawn BIS_fnc_typeText2;
|
|
VEMFChatMsg = nil;
|
|
};
|
|
};
|
|
// Welcome Credits
|
|
[] execVM "custom\welcome.sqf";
|
|
|
|
//Admin Menu
|
|
execVM "adminmenu\activate.sqf";
|
|
execVM "adminmenu\loop.sqf"; |