Jump to content

Halo3kings

Member
  • Posts

    7
  • Joined

  • Last visited

Posts posted by Halo3kings

  1. 7 hours ago, Halo3kings said:

    https://pastebin.com/nAdUwJCH server RPT

    https://pastebin.com/cawv5SUp Client RPT

    DZAI, Overwatch, Wai

    Battleye

    Not sure what you mean by server host but im running my server with hedi sql, xampp, and the arma 2 oa console 

    Well for the time being the "fix" I found was to go into your servers pbo > init > server_functions.sqf and comment out #include "mission_check.sqf" .

  2. 6 hours ago, Schalldampfer said:

    did you pack the server pbo?

    the dzai_initserver.sqf create a log line in very first step
     

      Reveal hidden contents

    /*
        DZAI Server Initialization File
        
        Description: Handles startup process for DZAI. Does not contain any values intended for modification.
    */
    private ["_startTime","_directoryAsArray","_worldname","_allUnits"];

    if (!isServer || !isNil "DZAI_isActive") exitWith {};
    DZAI_isActive = true;

    _startTime = diag_tickTime;

    _directoryAsArray = toArray __FILE__;
    _directoryAsArray resize ((count _directoryAsArray) - 25);
    DZAI_directory = toString _directoryAsArray;
    if (isNil "_this") then {_this = []};
    if ((count _this) > 0) then {
        //diag_log "DEBUG :: Startup parameters found!";
        if ("readoverridefile" in _this) then {DZAI_overrideEnabled = true} else {DZAI_overrideEnabled = nil};
        if ("enabledebugmarkers" in _this) then {DZAI_debugMarkersEnabled = true} else {DZAI_debugMarkersEnabled = nil};
    } else {
        //diag_log "DEBUG :: Startup parameters not found!";
        DZAI_overrideEnabled = nil;
        DZAI_debugMarkersEnabled = nil;
    };

    //Report DZAI version to RPT log
    #include "DZAI_version.txt"
    diag_log format ["[DZAI] Initializing %1 version %2 using base path %3.",DZAI_TYPE,DZAI_VERSION,DZAI_directory];

    so if it's running without error, you haven't loaded the new server_monitor.sqf with DZAI(or you directly set DZAI_isActive variable before running DZAI)

    Yeah I packed the server with the correct lines, and no the DZAI_isActive is set to false. 

  3. 6 minutes ago, Schalldampfer said:

    How did you edit  server_monitor.sqf? WAI seems to be loaded, but DZAI is not loaded at all.

    Add DZAI line " [] call compile preprocessFileLineNumbers "\z\addons\dayz_server\DZAI\init\dzai_initserver.sqf"; " if  you did not. 
    You can add it  just before or after WAI like below:

    yeah its there, so weird.

    Spoiler

    Capture.thumb.JPG.03fc5b0eb1c4b14be608276a53c2e91e.JPG

×
×
  • Create New...