Compare commits

...

5 Commits

Author SHA1 Message Date
3262dbfc20 Commented out A3EAI client 2021-03-11 18:29:39 -07:00
8ff8c7bd2a Changed server command password 2021-03-09 18:26:31 -07:00
4b1f1f193a Enabled CUP addons 2020-11-01 08:59:50 -07:00
0ffdcd1c91 Merge branch 'A3EAI' 2020-11-01 08:50:25 -07:00
a3b36fadb9 Server Config Settings updated 2020-11-01 08:42:38 -07:00
4 changed files with 11 additions and 11 deletions

View File

@ -1,14 +1,14 @@
serverRestart = "false"; // true sends #shutdown command to server after the time specified in ForceRestartTime
serverRestart = "true"; // true sends #shutdown command to server after the time specified in ForceRestartTime
forceRestartTime = 14400; // 4 hour restarts
// Time based
StaticDateTime[] = {}; // {0,0,0,8,0} would forces the server to start at 8am each time it is started while allowing the year, month and day to stay real time. Any values left at 0 will result in no change.
StaticDateTime[] = {0,0,0,6,0}; // {0,0,0,8,0} would forces the server to start at 8am each time it is started while allowing the year, month and day to stay real time. Any values left at 0 will result in no change.
timeDifference = 0; // Server uses real time this will allow you to offset just the hour.
timeMultiplier = 4; // Sets a time multiplier for in-game time. The command range is now capped at 0.1 - 120 to avoid performance problems.
// Loot (Check CfgBuildingLootPos.hpp in mission file for more settings)
lootMultiplier = 1; // 1 = normal loot multiplier. This controls how much loot can payout per loot container.
UseLootHelper = "false"; // GroundLoot will get a visible sphere for better loot identification
UseLootHelper = "true"; // GroundLoot will get a visible sphere for better loot identification
// Events
WeatherChances[] = {
@ -29,7 +29,7 @@ forceRestartTime = 14400; // 4 hour restarts
},
// { 1800, "PaydayEvent", 0, 2},
// { 1200, "MessageServer", 0, 2},
{ 120, "FastNights", 0 , 2, -1, {48,4} ,{"VR"}}, // TimeMulti Nighttime = 48 / TimeMulti Daytime = 4
{ 120, "FastNights", 0 , 2, -1, {20,6} ,{"VR"}}, // TimeMulti Nighttime = 48 / TimeMulti Daytime = 4
{ 1200, "HeliCrash", 0 , 2, -1, {} ,{"VR"}},
{ 2700, "AirDrop", 0 , 2, -1, {} ,{"VR"}},
{ 2400, "EarthQuake", 0 , 2, -1, {} ,{"VR"}},
@ -69,11 +69,11 @@ forceRestartTime = 14400; // 4 hour restarts
"", // "ItemGPS" or "ItemGeigerCounter_EPOCH",
"", // "EpochRadio0" through "EpochRadio9"
"", // "ItemCompass"
"", // "ItemWatch"
"ItemWatch", // "ItemWatch"
"" // "NVG_EPOCH" or "radiation_mask_epoch"
};
UseCustomTextures = "false"; // if true, Vehicles and Building parts textures will be saved and loaded to the DB (Paintshop)
UseCustomTextures = "true"; // if true, Vehicles and Building parts textures will be saved and loaded to the DB (Paintshop)
// vehicles - Max vehicle slots is calculated from per vehicle limits below. Warning! Higher the number lower the performance.
immuneIfStartInBase = "true"; // Protect vehicles from damage in bases until first unlocked after restart
@ -92,7 +92,7 @@ forceRestartTime = 14400; // 4 hour restarts
};
disableVehicleTIE = "true";
ReplaceCarService = "true"; // Replace all "Land_CarService_F" with "paintshop" on the Map on Server Start
PaintShopIcons = "false"; // Create MapIcons for PaintShops
PaintShopIcons = "true"; // Create MapIcons for PaintShops
// BaseBuilding
StorageSlotsLimit = 1500; // Max storage slots allowed. Warning! Higher the number lower performance.
@ -175,7 +175,7 @@ forceRestartTime = 14400; // 4 hour restarts
NPCSlotsLimit = 30; // Max number of traders static or dynamic. Warning! Higher the number lower performance.
forceStaticTraders = "true"; // disables traders moving from work to home
TraderGodMode = "false"; // If true, Trader can not be killed by Players
TraderGodMode = "true"; // If true, Trader can not be killed by Players
storedVehicleLimit = 15; // Vehicles more than x stored in ALL Traders will automatically be deleted on Restart.
StaticTraderItemPurge[] = {100,15}; // {ItemCount,ReducePercent} - If a static trader have more than x different items, on restart the items will be reduced by y percent
DynamicTraderRespawnCount = 100; // If a dynamic Trader have more than x different Items, he will respawn on another Spot (with start Items)

View File

@ -1,7 +1,7 @@
// execVM "debug\blckClient.sqf";
#include "A3EAI_Client\A3EAI_initclient.sqf";
//#include "A3EAI_Client\A3EAI_initclient.sqf";
if hasInterface then
{

View File

@ -19,7 +19,7 @@ timeout 2
:: RESTARTING THE ARMA 3 SERVER BE SURE TO EDIT THIS TO YOUR SERVER .EXE LOCATION -NOTE ALSO THIS IS WHERE YOU DEFINE WHERE YOU CONFIG.CFG IS
echo Starting ARMA 3 Server...
::C:\Windows\System32\cmd.exe /C start "arma3" "d:\GameServers\Arma3\arma3epoch\Epochserver_x64.exe" "-mod=@Epoch;@bornholm;@CBA_A3;@CUP Units;@CUP Vehicles;@CUP Weapons;@Extended Base Objects For Epoch;" "-serverMod=@EpochHive;@A3EAI;@GMS;@Advanced Rappelling;@Advanced Sling Loading;@Advanced Towing" -config=F:\GameServers\Arma3\arma3epoch\sc\server.cfg -port=2302 -profiles=sc -cfg=F:\GameServers\Arma3\arma3epoch\sc\basic.cfg -name=sc -autoINIT -Loadmissiontomemory
C:\Windows\System32\cmd.exe /C start "arma3" "d:\GameServers\Arma3\arma3epoch\Epochserver_x64.exe" "-mod=@Epoch;@bornholm;" "-serverMod=@EpochHive;@A3EAI;" -config=d:\GameServers\Arma3\arma3epoch\sc\server.cfg -port=2302 -profiles=sc -cfg=d:\GameServers\Arma3\arma3epoch\sc\basic.cfg -name=sc -autoINIT -Loadmissiontomemory
C:\Windows\System32\cmd.exe /C start "arma3" "d:\GameServers\Arma3\arma3epoch\Epochserver_x64.exe" "-mod=@Epoch;@bornholm;@CBA_A3;@CUP Units;@CUP Vehicles;@CUP Weapons;@Extended Base Objects For Epoch;" "-serverMod=@EpochHive;@A3EAI;" -config=d:\GameServers\Arma3\arma3epoch\sc\server.cfg -port=2302 -profiles=sc -cfg=d:\GameServers\Arma3\arma3epoch\sc\basic.cfg -name=sc -autoINIT -Loadmissiontomemory
echo ARMA 3 Server has started
timeout 60

View File

@ -4,7 +4,7 @@
hostname = "Z's EpochMod";
password = "joejer";
passwordAdmin = "474478";
serverCommandPassword = "474478joe";
serverCommandPassword = "474478j";
logFile = "A3Master.log";
verifySignatures = 2;
BattlEye = 1;