Mission system

This commit is contained in:
fallingsheep 2015-02-08 18:29:18 +11:00
parent 2c16990c05
commit 6e9570a111
4 changed files with 23 additions and 0 deletions

BIN
@epochhive/addons/VEMF.pbo Normal file

Binary file not shown.

Binary file not shown.

View File

@ -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";

View File

@ -0,0 +1,9 @@
/*
File: initServer.sqf
Description:
Starts the Initialization of the VEMF Server code.
*/
if (isServer) then {
[] ExecVM "\VEMF\init.sqf";
};