admn + video

This commit is contained in:
fallingsheep 2015-02-13 21:30:02 +11:00
parent ac22c9708a
commit 8b85a7555f
4 changed files with 24 additions and 7 deletions

View File

@ -1,7 +1,7 @@
while {true} do
{
waitUntil {alive vehicle player};
[] execVM "adminmenu\activate.sqf";
[] execVM "admintools\run.sqf";
waitUntil {!alive player};

View File

@ -37,11 +37,20 @@ wreckRemovalMinTime = 60;
wreckRemovalMaxTime = 360;
class CfgRemoteExecCommands {};
class RscPicture
{
type = CT_STATIC;
idc = -1;
style = 48;
colorBackground[] = {0, 0, 0, 0};
colorText[] = {1, 1, 1, 1};
font = "PuristaMedium"; //Typeface
sizeEx = 0;
};
class RscTitles
{
#include "dialog\statusBar.hpp"
#include "=BTC=_Logistic\=BTC=_Lift\=BTC=_Hud.h"
#include "dialog\statusBar.hpp"
};
class cfgMusic

Binary file not shown.

View File

@ -21,6 +21,10 @@ BANNED_LIST = [
"76561197971107759","76561197967087500","76561197995117205","76561197964338716","76561198128229370","76561198141766032","76561198131838128",
"76561198037171839","76561198137119508","76561198077957452","76561198055161991","76561198089299178","76561198129631838"
];
//BTC Lift,cargo and fast rope
_logistic = execVM "=BTC=_Logistic\=BTC=_logistic_Init.sqf";
//Status Bar
[] execVM "custom\fn_statusBar.sqf";
@ -29,7 +33,7 @@ BANNED_LIST = [
//Admin Menu
[] execVM "adminmenu\run.sqf";
[] execVM "adminmenu\loop.sqf";
//Loadouts
[] execVM "custom\loadout.sqf";
@ -40,7 +44,11 @@ if (isServer) then {
LSdeleter = compile preProcessFileLineNumbers "LSpawner\LSdeleter.sqf";
execVM "LSpawner\Lootspawner.sqf";
};
//Intro video
[] spawn {
["freq-arma3-v2.ogv", false] spawn BIS_fnc_titlecard;
waitUntil {!(isNil "BIS_fnc_titlecard_finished")};
};
//BUILD BIKE
if (("ItemScraps" in magazines player)&&("ToolKit" in magazines player)) then{
@ -72,4 +80,4 @@ if (!isDedicated) then {
] spawn BIS_fnc_typeText2;
VEMFChatMsg = nil;
};
};
};