Having trouble with R3F on server side..

Duck

New Member
Here the .pbo and .zip with the mod in it I am using for the mission.. did I do this right? I'm running a Reality Dayz server. I'm just trying to do heli towing

Location:
C:\Users\*****\Desktop\1.7.6.2 server\MPMissions\dayz_14.lingor.pbo
 

Attachments

  • dayz_14.lingor.pbo
    156.7 KB · Views: 3
Here is the new PBO. I tested it on my test server, and it works just dandy. I changed the init.sqf line. And, I set it to my instance. You will need to change your instance. That should be it.
 

Attachments

  • dayz_14.lingor.pbo
    156.7 KB · Views: 6
Code:
//R3F
execVM "R3F_ARTY_AND_LOG\init.sqf";

Code:
if (!isDedicated) then {
    //Conduct map operations
    0 fadeSound 0;
    waitUntil {!isNil "dayz_loadScreenMsg"};
    dayz_loadScreenMsg = (localize "STR_AUTHENTICATING");
   
    //Run the player monitor
    _id = player addEventHandler ["Respawn", {_id = [] spawn player_death;}];
    _playerMonitor =    [] execVM "\z\addons\dayz_code\system\player_monitor.sqf";   
};

You also had an additional }; at the end of the isDedicated
 
Back
Top