mirror of
https://github.com/Fallingsheep1985/Arma3Epoch.git
synced 2024-08-30 16:42:12 +00:00
Mission system
This commit is contained in:
parent
2c16990c05
commit
6e9570a111
BIN
@epochhive/addons/VEMF.pbo
Normal file
BIN
@epochhive/addons/VEMF.pbo
Normal file
Binary file not shown.
Binary file not shown.
@ -1,3 +1,17 @@
|
||||
//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";
|
||||
|
||||
|
9
MPMissions/epoch.Altis/initServer.sqf
Normal file
9
MPMissions/epoch.Altis/initServer.sqf
Normal file
@ -0,0 +1,9 @@
|
||||
/*
|
||||
File: initServer.sqf
|
||||
|
||||
Description:
|
||||
Starts the Initialization of the VEMF Server code.
|
||||
*/
|
||||
if (isServer) then {
|
||||
[] ExecVM "\VEMF\init.sqf";
|
||||
};
|
Loading…
Reference in New Issue
Block a user