Sorry for my English...
Put the folder R3F_ARTY_AND_LOG, for example here on the root, and just placed
Code:
// init. sqf
// after line 12
GVAR(init_started) = true;
if (isServer) then {
execVM "R3F_ARTY_AND_LOG\init.sqf";
};
It should also initialize the client
for example at the end of x_client.sqf or other initialization file of the client.
It is now a file on the root x_clientcustomcode.sqf
There is no hurry, we initialize the client after the intro, sleep 60;
Code:
[] spawn {
sleep 60;
execVM "R3F_ARTY_AND_LOG\init.sqf";
};
Your error seems like something missing }; in an initialization file such as in the init. sqf
end of a block not executed, a script executed poorly...
I have already had that, I had mistakenly deleted }; during a copy / paste into a file init