mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Basic Test Mission
Very simple test mission with creates, debug console enabled for all.
This commit is contained in:
parent
bd813d0d7a
commit
824448833f
1
addons/testmissions/$PBOPREFIX$
Normal file
1
addons/testmissions/$PBOPREFIX$
Normal file
@ -0,0 +1 @@
|
||||
z\ace\Addons\testmissions
|
@ -0,0 +1,17 @@
|
||||
enableDebugConsole = 2; //note security risk
|
||||
|
||||
// respawn = "GROUP";
|
||||
respawn = "BASE";
|
||||
// respawn = "BIRD";
|
||||
respawnDelay = 2;
|
||||
|
||||
class Header {
|
||||
gameType = Coop;
|
||||
minPlayers = 1;
|
||||
maxPlayers = 491;
|
||||
};
|
||||
|
||||
onLoadName = "ACE3 Testing";
|
||||
// onLoadMission = "";
|
||||
// author = "";
|
||||
// loadScreen = "";
|
@ -0,0 +1 @@
|
||||
enableSaving [false, false];
|
1248
addons/testmissions/MPMissions/ACETestingMap1.Stratis/mission.sqm
Normal file
1248
addons/testmissions/MPMissions/ACETestingMap1.Stratis/mission.sqm
Normal file
File diff suppressed because it is too large
Load Diff
20
addons/testmissions/config.cpp
Normal file
20
addons/testmissions/config.cpp
Normal file
@ -0,0 +1,20 @@
|
||||
#include "script_component.hpp"
|
||||
|
||||
class CfgPatches {
|
||||
class ADDON {
|
||||
units[] = {};
|
||||
weapons[] = {};
|
||||
requiredVersion = REQUIRED_VERSION;
|
||||
requiredAddons[] = {"ace_common"};
|
||||
VERSION_CONFIG;
|
||||
};
|
||||
};
|
||||
|
||||
class CfgMissions {
|
||||
class MPMissions {
|
||||
class ACETestingMap1 {
|
||||
briefingName = "ACE Testing Map 1";
|
||||
directory = QUOTE(PATHTO_R(MPMissions\ACETestingMap1.Stratis));
|
||||
};
|
||||
};
|
||||
};
|
12
addons/testmissions/script_component.hpp
Normal file
12
addons/testmissions/script_component.hpp
Normal file
@ -0,0 +1,12 @@
|
||||
#define COMPONENT testmissions
|
||||
#include "\z\ace\Addons\main\script_mod.hpp"
|
||||
|
||||
#ifdef DEBUG_ENABLED_TESTMISSIONS
|
||||
#define DEBUG_MODE_FULL
|
||||
#endif
|
||||
|
||||
#ifdef DEBUG_ENABLED_TESTMISSIONS
|
||||
#define DEBUG_SETTINGS DEBUG_ENABLED_TESTMISSIONS
|
||||
#endif
|
||||
|
||||
#include "\z\ace\Addons\main\script_macros.hpp"
|
Loading…
Reference in New Issue
Block a user