Added fixes
This commit is contained in:
parent
566c2805eb
commit
89111f4619
Binary file not shown.
@ -4703,7 +4703,7 @@ class CfgSettings
|
|||||||
{4, 0} = Every 4 hours
|
{4, 0} = Every 4 hours
|
||||||
{1, 30} = Every one and a half hour (who the hell would do this?)
|
{1, 30} = Every one and a half hour (who the hell would do this?)
|
||||||
*/
|
*/
|
||||||
restartTimer[] = {0, 15};
|
restartTimer[] = {4, 0};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Kicks players before restart to prevent gear loss.
|
Kicks players before restart to prevent gear loss.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
@echo off
|
@echo off
|
||||||
for /f "delims=" %%x in ('dir /od /a-d /b F:\Arma3\Arma3_Server\SC\*.rpt') do set recent=%%x
|
|
||||||
start "" "C:\Program Files (x86)\Notepad++\notepad++.exe" "F:\Arma3\Arma3_Server\SC\%recent%"
|
|
||||||
|
|
||||||
for /f "delims=" %%x in ('dir /od /a-d /b F:\Arma3\Arma3_Server\HC\*.rpt') do set recent=%%x
|
for /f "delims=" %%x in ('dir /od /a-d /b F:\Arma3\Arma3_Server\HC\*.rpt') do set recent=%%x
|
||||||
start "" "C:\Program Files (x86)\Notepad++\notepad++.exe" "F:\Arma3\Arma3_Server\HC\%recent%"
|
start "" "C:\Program Files (x86)\Notepad++\notepad++.exe" "F:\Arma3\Arma3_Server\HC\%recent%"
|
||||||
|
|
||||||
|
for /f "delims=" %%x in ('dir /od /a-d /b F:\Arma3\Arma3_Server\SC\*.rpt') do set recent=%%x
|
||||||
|
start "" "C:\Program Files (x86)\Notepad++\notepad++.exe" "F:\Arma3\Arma3_Server\SC\%recent%"
|
Binary file not shown.
@ -1,10 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
//ExAd
|
|
||||||
ExileClient_gui_xm8_slide = "ExAdClient\XM8\CustomCode\ExileClient_gui_xm8_slide.sqf";
|
|
||||||
ExileClient_gui_xm8_show = "ExAdClient\XM8\CustomCode\ExileClient_gui_xm8_show.sqf";
|
|
||||||
ExileServer_system_territory_database_load = "ExAdClient\VirtualGarage\CustomCode\ExileServer_system_territory_database_load.sqf";
|
|
||||||
|
|
||||||
//Extended Base Mod
|
//Extended Base Mod
|
||||||
ExileClient_system_lootmanager_thread_spawn = "EBM\exileclient_system_lootmanager_thread_spawn.sqf";
|
ExileClient_system_lootmanager_thread_spawn = "EBM\exileclient_system_lootmanager_thread_spawn.sqf";
|
||||||
|
|
||||||
@ -33,12 +28,6 @@ ExileServer_system_trading_network_wasteDumpRequest = "custom\SellCrates\ExileSe
|
|||||||
//enhancedMovement
|
//enhancedMovement
|
||||||
ExileClient_system_thread_initialize = "custom\enhancedMovement\ExileClient_system_thread_initialize.sqf";
|
ExileClient_system_thread_initialize = "custom\enhancedMovement\ExileClient_system_thread_initialize.sqf";
|
||||||
|
|
||||||
//Fix for Error Foreign error: Unknown enum value: "MPKilled"
|
|
||||||
ExileServer_system_garbageCollector_deleteObject="custom\fixes\ExileServer_system_garbageCollector_deleteObject.sqf";
|
|
||||||
|
|
||||||
//Another fix for unknown enum value: PUBLIC
|
|
||||||
ExileServer_system_event_ambientFlyOver_start="custom\fixes\ExileServer_system_event_ambientFlyOver_start.sqf";
|
|
||||||
|
|
||||||
//Persistent Time and Weather System
|
//Persistent Time and Weather System
|
||||||
ExileClient_object_player_stats_updateTemperature="custom\PTWS\ExileClient_object_player_stats_updateTemperature.sqf";
|
ExileClient_object_player_stats_updateTemperature="custom\PTWS\ExileClient_object_player_stats_updateTemperature.sqf";
|
||||||
ExileClient_system_snow_thread_update="custom\PTWS\ExileClient_system_snow_thread_update.sqf";
|
ExileClient_system_snow_thread_update="custom\PTWS\ExileClient_system_snow_thread_update.sqf";
|
||||||
@ -53,3 +42,14 @@ ExileServer_system_rcon_thread_check="custom\fixes\ExileServer_system_rcon_threa
|
|||||||
//Exile Loot Drop DLL
|
//Exile Loot Drop DLL
|
||||||
ExileServer_system_lootManager_dropItem = "\ExileLootDrop\ExileServer_system_lootManager_dropItem.sqf";
|
ExileServer_system_lootManager_dropItem = "\ExileLootDrop\ExileServer_system_lootManager_dropItem.sqf";
|
||||||
ExileServer_system_lootManager_spawnLootInBuilding = "\ExileLootDrop\ExileServer_system_lootManager_spawnLootInBuilding.sqf";
|
ExileServer_system_lootManager_spawnLootInBuilding = "\ExileLootDrop\ExileServer_system_lootManager_spawnLootInBuilding.sqf";
|
||||||
|
|
||||||
|
//ExAd
|
||||||
|
ExileClient_gui_xm8_slide = "ExAdClient\XM8\CustomCode\ExileClient_gui_xm8_slide.sqf";
|
||||||
|
ExileClient_gui_xm8_show = "ExAdClient\XM8\CustomCode\ExileClient_gui_xm8_show.sqf";
|
||||||
|
ExileServer_system_territory_database_load = "ExAdClient\VirtualGarage\CustomCode\ExileServer_system_territory_database_load.sqf";
|
||||||
|
|
||||||
|
//Fix for Error Foreign error: Unknown enum value: "MPKilled"
|
||||||
|
ExileServer_system_garbageCollector_deleteObject="custom\fixes\ExileServer_system_garbageCollector_deleteObject.sqf";
|
||||||
|
|
||||||
|
//Another fix for unknown enum value: PUBLIC
|
||||||
|
ExileServer_system_event_ambientFlyOver_start="custom\fixes\ExileServer_system_event_ambientFlyOver_start.sqf";
|
File diff suppressed because it is too large
Load Diff
@ -74,3 +74,33 @@ showHUD[] =
|
|||||||
#include "infiSTAR_AdminMenu.hpp"
|
#include "infiSTAR_AdminMenu.hpp"
|
||||||
#include "infiSTAR_chat.hpp"
|
#include "infiSTAR_chat.hpp"
|
||||||
#include "infiSTAR_KeyBinds.hpp"
|
#include "infiSTAR_KeyBinds.hpp"
|
||||||
|
|
||||||
|
//ExAd
|
||||||
|
#include "ExAdClient\ExAd.cpp"
|
||||||
|
|
||||||
|
//R3F Logistics
|
||||||
|
//#include "R3F_LOG\desc_include.h"
|
||||||
|
|
||||||
|
class CfgFunctions
|
||||||
|
{
|
||||||
|
//ExAd
|
||||||
|
#include "ExAdClient\CfgFunctions.cpp"
|
||||||
|
};
|
||||||
|
|
||||||
|
class RscTitles
|
||||||
|
{
|
||||||
|
//ExAd
|
||||||
|
#include "ExAdClient\RscTitles.cpp"
|
||||||
|
};
|
||||||
|
|
||||||
|
class CfgHints
|
||||||
|
{
|
||||||
|
//ExAd
|
||||||
|
#include "ExAdClient\CfgHints.cpp"
|
||||||
|
};
|
||||||
|
|
||||||
|
class CfgNetworkMessages
|
||||||
|
{
|
||||||
|
//ExAd
|
||||||
|
#include "ExAdClient\CfgNetworkMessages.cpp"
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user