Added Mozzie Mod and added it as a deployable vehicle in XM8

Disabled carrying cargo in R3F
Added Mozzie Mod to startup batch files
This commit is contained in:
Zepheris 2018-03-04 17:46:58 -07:00
parent 52014ff6e2
commit c281997597
10 changed files with 83 additions and 27 deletions

View File

@ -8,7 +8,7 @@ echo Launching Server
F:
cd %ARMA%
echo Exile Server Monitor... Active !
start /affinity 0x3 /abovenormal "Arma3" arma3server_SC.exe "-mod=@exile;Kart;Mark;Heli;@ArmA3 Adjustable Full Screen Night Vision;@CBA_A3;@Enhanced Movement;@Advanced Rappelling;@Advanced Urban Rappelling;@Arma 3 Flashlight Mod (Exile Fix);" "-servermod=@exileserver;@asm;@A3XAI;@ASR_AI3;@Enigma;" -config=%ARMA%\@ExileServer\config.cfg -port=2302 -profiles=SC -cfg=%ARMA%\@ExileServer\basic.cfg -name=SC -autoinit -Loadmissiontomemory -hugepages
start /affinity 0x3 /abovenormal "Arma3" arma3server_SC.exe "-mod=@exile;Kart;Mark;Heli;@ArmA3 Adjustable Full Screen Night Vision;@CBA_A3;@Enhanced Movement;@Advanced Rappelling;@Advanced Urban Rappelling;@Arma 3 Flashlight Mod (Exile Fix);@Mozzie Mod;" "-servermod=@exileserver;@asm;@A3XAI;@ASR_AI3;@Enigma;" -config=%ARMA%\@ExileServer\config.cfg -port=2302 -profiles=SC -cfg=%ARMA%\@ExileServer\basic.cfg -name=SC -autoinit -Loadmissiontomemory -hugepages
start /affinity 0xC /abovenormal "Arma3_HC" arma3server_HC.exe -client -connect=127.0.0.1 -password=joejer "-mod=@exile;Kart;Mark;Heli;@A3XAI_HC;@asm;@ASR_AI3;@CBA_A3;@Arma 3 Flashlight Mod (Exile Fix);" -profiles=HC -name=HC
REM ping 127.0.0.1 -n 15 >NUL

BIN
keys/Cloud.bikey Normal file

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1 @@
#include "mozzie\air.sqf"

View File

@ -0,0 +1,32 @@
R3F_LOG_CFG_can_tow = R3F_LOG_CFG_can_tow +
[
];
R3F_LOG_CFG_can_be_towed = R3F_LOG_CFG_can_be_towed +
[
];
R3F_LOG_CFG_can_lift = R3F_LOG_CFG_can_lift +
[
];
R3F_LOG_CFG_can_be_lifted = R3F_LOG_CFG_can_be_lifted +
[
];
R3F_LOG_CFG_can_transport_cargo = R3F_LOG_CFG_can_transport_cargo +
[
["c_Mozzie", 0]
];
R3F_LOG_CFG_can_be_transported_cargo = R3F_LOG_CFG_can_be_transported_cargo +
[
];
R3F_LOG_CFG_can_be_moved_by_player = R3F_LOG_CFG_can_be_moved_by_player +
[
["c_Mozzie"]
];

View File

@ -225,6 +225,7 @@ R3F_LOG_CFG_string_condition_allow_creation_factory_on_this_client = "false";
//#include "addons_config\A3_vanilla.sqf" // THIS IS INCLUDED IN EXILE.SQF
//#include "addons_config\CUP.sqf" // REMOVE THIS LINE IF YOU DONT USE CUP VEHICLES
#include "addons_config\Exile.sqf"
#include "addons_config\Mozzie.sqf"
//#include "addons_config\Super.sqf"
//#include "addons_config\YOUR_ADDITIONAL_ADDON.sqf"

View File

@ -33,6 +33,7 @@ _message = _message + "<t align='center'><br />";
//_message = _message + modCheckTerrain;
_message = _message + modCheckCBA;
_message = _message + modCheckEN;
_message = _message + modCheckMOZ;
_message = _message + modCheckAR;
_message = _message + modCheckAUR;
_message = _message + modCheckBVFL;

View File

@ -137,6 +137,15 @@ if (isClass(configFile >> "CfgPatches" >> "lsd_nvg")) then
errorLevel = errorLevel + 1
};
//Mozzie
if (isClass(configFile >> "CfgPatches" >> "c_Mozzie_01")) then
{
modCheckMOZ = "<t size='0.9' shadow='1' shadowColor='#000000' align='center'>Mozzie Mod is</t><t color='#2fd402' size='0.9' shadow='1' shadowColor='#000000' align='center'> found!</t><br/>";
} else {
modCheckMOZ = "<t size='0.9' shadow='1' shadowColor='#000000' align='center'>Mozzie Mod is</t><t color='#ff0000' size='0.9' shadow='1' shadowColor='#000000' align='center'> NOT FOUND! (Required)</t><br/>";
errorLevel = errorLevel + 1
};
/*
//adjustable Grenades
if (isClass(configFile >> "CfgPatches" >> "vz_a3_adjustableGrenades")) then

View File

@ -2246,7 +2246,7 @@ class CfgVehicleTransport
class CfgXM8
{
extraApps[] = {"ExAd_Bike","ExAd_VG","ExAd_CHVD","BRAmaRecipes","ExAd_Bike","ExAd_modChecker"};
extraApps[] = {"ExAd_Bike","ExAd_Mozzie","ExAd_VG","ExAd_CHVD","BRAmaRecipes","ExAd_modChecker"};
class ExAd_VG
{
@ -2333,6 +2333,18 @@ class CfgXM8
onOpen = "ExAdClient\XM8\Apps\modChecker\onOpen.sqf";
onClose = "ExAdClient\XM8\Apps\modChecker\onClose.sqf";
};
class ExAd_Mozzie
{
title = "Deploy Mozzie";
config = "ExadClient\XM8\Apps\DeployVehicle\config.sqf";
bambiState = 0; //Set to 1 to only allow players to deploy as a bambi.
blockInSafezone = 0; //Set to 1 to prevent players deploying said vehicle inside of safezones.
vehicleClass = "C_Mozzie";
recipe[] = {};
packable = 1;
autoCleanUp = 0;
quickFunction = "['ExAd_Mozzie'] call ExAd_XM8_DV_fnc_spawnVehicle";
};
};
class SpawnVehicleItems{

View File

@ -30,7 +30,7 @@ echo.
::RESTARTING THE ARMA 3 SERVER
echo Starting ARMA 3 Server...
start /min /affinity 0x3 /abovenormal "Arma3" arma3server_SC.exe "-mod=@exile;Kart;Mark;Heli;@ArmA3 Adjustable Full Screen Night Vision;@CBA_A3;@Enhanced Movement;@Advanced Rappelling;@Advanced Urban Rappelling;@Arma 3 Flashlight Mod (Exile Fix);" "-servermod=@exileserver;@asm;@A3XAI;@ASR_AI3;@Enigma;" -config=%ARMA%\@ExileServer\config.cfg -port=2302 -profiles=SC -cfg=%ARMA%\@ExileServer\basic.cfg -name=SC -autoinit -Loadmissiontomemory -hugepages
start /min /affinity 0x3 /abovenormal "Arma3" arma3server_SC.exe "-mod=@exile;Kart;Mark;Heli;@ArmA3 Adjustable Full Screen Night Vision;@CBA_A3;@Enhanced Movement;@Advanced Rappelling;@Advanced Urban Rappelling;@Arma 3 Flashlight Mod (Exile Fix);@Mozzie Mod;" "-servermod=@exileserver;@asm;@A3XAI;@ASR_AI3;@Enigma;" -config=%ARMA%\@ExileServer\config.cfg -port=2302 -profiles=SC -cfg=%ARMA%\@ExileServer\basic.cfg -name=SC -autoinit -Loadmissiontomemory -hugepages
start /min /affinity 0xC /abovenormal "Arma3_HC" arma3server_HC.exe -client -connect=127.0.0.1 -password=joejer "-mod=@exile;Kart;Mark;Heli;@A3XAI_HC;@asm;@ASR_AI3;@CBA_A3;@Arma 3 Flashlight Mod (Exile Fix);" -profiles=HC -name=HC
echo ARMA 3 Server is started
timeout 25