Jump to content

El Gobernador

Member
  • Posts

    7
  • Joined

  • Last visited

Posts posted by El Gobernador

  1. you change in CONFIGFILES/config.cfg

     

    // JOINING RULES
     
    maxPlayers = 50;
    kickDuplicate = 1;
    verifySignatures = 2;
    equalModRequired = 0;
    requiredBuild = 103718;
    requiredSecureId = 1;

     

    in verifySignatures = 2;  Change the 2 to 0 bye bye error.... Wrong signature ca\plants\data\jablon_3.rvmat and Wrong signature ca\plants\data\tree_crown.rvmat.  

  2. Please I want to know if I'm doing well, thanks

    Look for:
    
    if (isNil "EPOCH_EVENT_RUNNING") then {
    EPOCH_EVENT_RUNNING = false;
    };
    
    
    Remplace to:
    
    if (isNil "EPOCH_EVENT_RUNNING") then {
            EPOCH_EVENT_RUNNING = 0;
    };
    if (isNil "MAX_EPOCH_EVENTS") then {
            EPOCH_EVENT_RUNNING = 5;
    };
    
    
    
    
    Look for:
    
    // Check for another event running
    if (EPOCH_EVENT_RUNNING) exitWith {
    diag_log("Event already running");
    };
    
    
    Remplace to:
    
    
    // Check if there are too many events running
    if (EPOCH_EVENT_RUNNING > MAX_EPOCH_EVENTS and !_debug) exitWith {
        diag_log format ["Already %1 active events",MAX_EPOCH_EVENTS];
    };
    EPOCH_EVENT_RUNNING = EPOCH_EVENT_RUNNING + 1;
    
    
    
    if (isNil "MAX_EPOCH_EVENTS") then {
            EPOCH_EVENT_RUNNING = 5;
    };
    
    
    
    And finally add in the end this:
    
    
    //AT bottom:
    EPOCH_EVENT_RUNNING = EPOCH_EVENT_RUNNING - 1;
    
    
    
    
×
×
  • Create New...