Hello. Having trouble getting the script to work with Shuko's taskmaster, and I suspect it's got something to do with my init.sqf (only removed the task and briefing texts to make it more compact here):
call compile preprocessFile "=BTC=_revive\=BTC=_revive_init.sqf";
[[
["Task1","Task1Title","Task1Desc",true,[],"assigned","OfficerMrk"],
["Task2","Task2Title","Task2Desc",true,[],"created","AAMrk"]
],[
["Mission","MissionText",EAST],
["Signal","SignalText"]
]] call compile preprocessfilelinenumbers "shk_taskmaster.sqf";
if (isServer) then {
_lamp = createVehicle ["Land_PortableLight_double_F", getPos lampspot, [], 0, "CAN_COLLIDE"];
};
I've also tried placing the call compile for BTC just behind the taskmaster portion, but I can only ever make one or the other work. Is there something I must add in the file when using multiple call compiles, or what gives here?