So, I have been wanting to add MF-TOW to my server for about a day now, but I have been stuck on something... It says " This is the built in DayZ Epoch towing call, ensure that it is commented out so that it doesn't interfear with MF-Tow. Below this block of code, add the following line to initiate the MF-Tow script. " How do I comment out a code... It's also asking to put the following line below the block of code, how would I do that? I'm new to all this, so please help me, as I plan to get better. Here is the code by the way.
Comment out this
//Towing with tow truck
/*
if(_typeOfCursorTarget == "TOW_DZE") then {
if (s_player_towing < 0) then {
if(!(_cursorTarget getVariable ["DZEinTow", false])) then {
s_player_towing = player addAction [localize "STR_EPOCH_ACTIONS_ATTACH" "\z\addons\dayz_code\actions\tow_AttachStraps.sqf",_cursorTarget, 0, false, true, "",""];
} else {
s_player_towing = player addAction [localize "STR_EPOCH_ACTIONS_DETACH", "\z\addons\dayz_code\actions\tow_DetachStraps.sqf",_cursorTarget, 0, false, true, "",""];
};
};
} else {
player removeAction s_player_towing;
s_player_towing = -1;
};
*/
Then add this below the block..
// MF-Tow Script by Matt Fairbrass (matt_d_rat)
call compile preprocessFileLineNumbers 'addons\mf-tow\init.sqf';
Question
Desire
So, I have been wanting to add MF-TOW to my server for about a day now, but I have been stuck on something... It says " This is the built in DayZ Epoch towing call, ensure that it is commented out so that it doesn't interfear with MF-Tow. Below this block of code, add the following line to initiate the MF-Tow script. " How do I comment out a code... It's also asking to put the following line below the block of code, how would I do that? I'm new to all this, so please help me, as I plan to get better. Here is the code by the way.
Comment out this
Then add this below the block..
Thanks
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now