Fix for "Include file @dayzcc\addons\dayzz_server_config.hpp not found"

Rexxenexx

Member
Fix for "Include file @dayzcc\addons\dayzz_server_config.hpp not found"

This will only happen if you renamed your hive folder. In this Example we will use "@myCivHive" as the name of the hive folder. To fix it you simply have to point the includes in the server pbo to your directory. Here is how to do it:

1.) DePBO dayz_server.pbo

2.) Edit these files:
dayz_server\init\server_functions.sqf
dayz_server\system\server_monitor.sqf
dayz_server\compile\server_playerHit.sqf
dayz_server\compile\server_playerDied.sqf
dayz_server\compile\server_playerSetup.sqf

replace:
Code:
#include "\@dayzcc\addons\dayz_server_config.hpp"
with:
Code:
#include "\@myCivHive\addons\dayz_server_config.hpp"

@myCivHive is an example and should be the name of your hive folder.

3.) Repack dayz_server.pbo

Hope this helps!
 
Back
Top