Skip to content

Commit

Permalink
Moved Bootstrap from ARCORE
Browse files Browse the repository at this point in the history
Added bootstrap.hpp and data to ARCMF. Edited references to reflect new structure.
  • Loading branch information
RamenNoodleNinja committed May 8, 2020
1 parent dc51627 commit d053dc8
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 2 deletions.
57 changes: 57 additions & 0 deletions ARCMF.VR/bootstrap.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
class Header {
gameType = Coop;
minPlayers = 1;
maxPlayers = 999;
ARCMF = 1;
#ifdef SANDBOX
sandbox = 1;
#endif
};

loadScreen = data\splash.paa);
enableDebugConsole = 1;
disabledAI = 1;
respawnDelay = 3;
respawnButton = 1;
respawnOnStart = -1;

#ifdef SANDBOX
respawn = 3;
respawnTemplates[] = {"MenuPosition"};
#else
respawn = 1;
respawnTemplates[] = {"Seagull", "arcore_spectator"};
#endif

showGroupIndicator = 0;
showHUD[] = {true, true, false, false, true, true, false, true};

corpseManagerMode = 3;
corpseLimit = 15;
corpseRemovalMinTime = 300;
corpseRemovalMaxTime = 900;
minPlayerDistance = 25;

disableRandomization[] = {"All", "AllVehicles"};

class Params {
class BriefingTimer {
title = "Briefing Timer";
values[] = {-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30};
texts[] = {"Disabled","Infinite","1 Minute","2 Minutes","3 Minutes","4 Minutes","5 Minutes","6 Minutes","7 Minutes","8 Minutes","9 Minutes","10 Minutes","11 Minutes","12 Minutes","13 Minutes","14 Minutes","15 Minutes","16 Minutes","17 Minutes","18 Minutes","19 Minutes","20 Minutes","21 Minutes","22 Minutes","23 Minutes","24 Minutes","25 Minutes","26 Minutes","27 Minutes","28 Minutes","29 Minutes","30 Minutes"};
#ifdef BRIEFINGTIMER_DEFAULT
default = BRIEFINGTIMER_DEFAULT;
#else
default = 0;
#endif
};
};

#ifndef CUSTOMCFGDEBRIEFINGSECTIONS
class CfgDebriefingSections {
class acex_killTracker {
title = "Acex Killed Events";
variable = "acex_killTracker_outputText";
};
};
#endif
Binary file added ARCMF.VR/data/splash.paa
Binary file not shown.
4 changes: 2 additions & 2 deletions ARCMF.VR/description.ext
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
onLoadName = "ARCMF";
onLoadMission = "ARCOMM Mission Framework.";
author = "Kingsley, tryteyker, Krijger";
author = "Kingsley, tryteyker, Krijger, RamenNoodleNinja";

#include "config.hpp"
#include "\z\arcore\addons\main\bootstrap.hpp"
#include "bootstrap.hpp"

0 comments on commit d053dc8

Please sign in to comment.