My Epoch test server runs perfectly on 1.0.5.1 but when I try to run the newest master branch I run into some problems with #include.
I get the error: Include file z\addons\dayz_code\system\REsec.sqf not found. from my server, then the server closes itself.
If I comment out the #include "\z\addons\dayz_code\system\REsec.sqf" line in my mission folder, I get the same error but with #include "\z\addons\dayz_code\system\BIS_Effects\init.sqf", which is also in the mission folder. When I comment both of them out I get errors from other #includes, which all say that they haven't been found.
I'm using PBO Manager to pack my dayz_code.pbo, and it's worked before although I'm not 100% on how reliable it is.
Here are some more things I've tried:
Packing the mission file as a .pbo instead of a folder
moving the files straight into the mission folder and calling them #include "REsec.sqf" and etc... (new error when I try this: "Script z\addons\dayz_code\init\variables.sqf not found")
and a bunch of other stuff I can't remember
Here's what I've narrowed it down to:
PBO Manager is having a bad time
Something changed
Here is my startup .bat file:
@echo off
start "arma2" /min "arma2oaserver.exe" -port=2302 "-config=cfgdayzepoch\server.cfg" "-cfg=cfgdayzepoch\basic.cfg" "-profiles=cfgdayzepoch" -name=cfgdayzepoch "-mod=@DayZ_Epoch;@DayZ_Epoch_Server;"
My Epoch test server runs perfectly on 1.0.5.1 but when I try to run the newest master branch I run into some problems with #include.
I get the error: Include file z\addons\dayz_code\system\REsec.sqf not found. from my server, then the server closes itself.
If I comment out the #include "\z\addons\dayz_code\system\REsec.sqf" line in my mission folder, I get the same error but with #include "\z\addons\dayz_code\system\BIS_Effects\init.sqf", which is also in the mission folder. When I comment both of them out I get errors from other #includes, which all say that they haven't been found.
I'm using PBO Manager to pack my dayz_code.pbo, and it's worked before although I'm not 100% on how reliable it is.
Here are some more things I've tried:
Here's what I've narrowed it down to:
Here is my startup .bat file: @echo off start "arma2" /min "arma2oaserver.exe" -port=2302 "-config=cfgdayzepoch\server.cfg" "-cfg=cfgdayzepoch\basic.cfg" "-profiles=cfgdayzepoch" -name=cfgdayzepoch "-mod=@DayZ_Epoch;@DayZ_Epoch_Server;"