-
Content count
4 -
Donations
0.00 EUR -
Joined
-
Last visited
-
Where do I
Overwrite ExileClient_object_player_event_onEnterSafezon.sqf in the Config.cpp in the Missionfile
-
in you mission folder open config.cfg go to line 2717 (class CfgExileCustomCode)
e.g
class CfgExileCustomCode
{
/*
You can overwrite every single file of our code without touching it.
To do that, add the function name you want to overwrite plus the
path to your custom file here. If you wonder how this works, have a
look at our bootstrap/fn_preInit.sqf function.Simply add the following scheme here:
<Function Name of Exile> = "<New File Name>";
Example:
ExileClient_util_fusRoDah = "myaddon\myfunction.sqf";
*/
// Igiload //
ExileClient_object_player_event_onEnterSafezone = "Igiload\ExileClient_object_player_event_onEnterSafezone.sqf";