From 6f7a69fd68350a8f0608f60ce1746d134e10233d Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Sat, 26 Nov 2016 13:34:00 -0500 Subject: [PATCH] Update REsec.hpp allowed execVM Update for new corepatch: https://github.com/Goliath86/CorePatch/blob/master/CorePatch_Modules/Functions/main.sqf#L9 Also fixed false positive due to case sensitivity: "WARNING RE rexecVMcode with illegal args:[any,any,"ca\modules\Functions\init.sqf"]" --- SQF/dayz_code/system/REsec.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQF/dayz_code/system/REsec.hpp b/SQF/dayz_code/system/REsec.hpp index 1defa4daf..6576281a8 100644 --- a/SQF/dayz_code/system/REsec.hpp +++ b/SQF/dayz_code/system/REsec.hpp @@ -23,7 +23,7 @@ // Special logic for execVM, only these whitelisted scripts will be spawned #ifndef WHITELISTED_EXECVM -#define WHITELISTED_EXECVM [ ""ca\Modules\Functions\init.sqf"" ] +#define WHITELISTED_EXECVM [ ""ca\Modules\Functions\init.sqf"", ""ca\modules\Functions\init.sqf"", ""\CorePatch\CorePatch_Modules\Functions\init.sqf"" ] // uncomment and put in the array above if you want your server be able to kick players (not used in DayZ for now) //""ca\Modules\MP\data\scriptCommands\endMission.sqf"" #endif