Jump to content

ShiftyFR

Member
  • Content Count

    113
  • Joined

  • Last visited

  • Medals

Posts posted by ShiftyFR


  1. Hello everyone,

     

    Since some time (maybe 4-5 weeks) we encountered low bandwidth and laggs on our server. We tried to resolved it, by changing the location of the server, but problem still there. At the start, when we got the server (october 2019) we didn't had any problem. Problem started maybe mi-february.

    We are using the Web Admin from Dalghren, since many time and somes addons. With or without addons, clean mission or not, same problem.

    Here is the speedtest

     

    9276399189.png

     

    Hope you can help us !


  2. 2 hours ago, SkillerPenguin said:

    I just did - set the HC allocation in the config file to false.

     Just tried with it :

    #define GLOBAL_SPAWN_DISTANCE 1500 // Meters
    #define CACHE_DISTRIBUTE_AI false // Distribute to HC machines, may break scripts such as UPSMON
    #define CACHE_MONITOR_DELAY 15 // Seconds
    #define CACHE_VEH_TIMEOUT 30 // Seconds
    #define CACHE_UNIT_SPAWN_FNC {} // Should remain small, will be sent to all clients on mission load

    But still not working


  3. Hi guys,

     

    I have a problem with the task module. I put 2 triggers, one to succeeded the task, and another one to create a new task. It's working great in solo, but on dedicated server it's not working.

     

    Here is what I have in the first trigger

    Condition:
    insertionCondition;
    
    On activation:
    hint "Blablabla"; 
    officer removeaction 0; createTask1Condition=true;

     

    And in the second one

    Condition :
    createTask1Condition;

     

    The first one is called by an addaction on the officer.

     

    I'm searching why it is not working on dedicated server, because in solo from the editor it's working fine !


  4. 37 minutes ago, duda123 said:

     

    What's the class name of the Apache heli?

     

    The ASL_SLING_RULES_OVERRIDE setting only controls the types of cargo that can be attatched. You'll probably find that you can't attach the ropes from the Apache to anything.

     

    There's another setting that controls when the deploy ropes option appears. However, it's only a whitelist and can't easily exclude certain helis while allowing ropes for everything else.

     

     

    The classname is the fza_ ones. I just want to remove the "addaction" from the apache

     


  5. 10 hours ago, duda123 said:

     

    Looks like you're missing commas. Give this a try:

     

    ASL_SLING_RULES_OVERRIDE = [
          ["All","CAN_SLING","All"],
          ["fza_ah64d_b2e","CANT_SLING","All"],
          ["fza_ah64d_b2e_nr","CANT_SLING","All"],
          ["B_UH60L_med_F","CAN_SLING","All"],
          ["B_MH60L_noprobe_F","CAN_SLING","All"],
          ["B_MH60L_F","CAN_SLING","All"],
          ["B_MH60L_gray_F","CAN_SLING","All"],
          ["B_HH60A_gray_F","CAN_SLING","All"],
          ["B_HH60A_grey_doors_F","CAN_SLING","All"]
    ];

     

    not working, apache still have the option :(


  6. On 08/01/2017 at 5:49 AM, duda123 said:

    When you use ASL_SLING_RULES_OVERRIDE, it overrides all settings. If you just put in ["ffaa_famet_tigre_at","CANT_SLING","All"], it would end up disabling sling loading for everything. Instead, you need to include the default rules, and then add the exception as a second element like this:

     

    ASL_SLING_RULES_OVERRIDE = [

          ["All","CAN_SLING","All"],

          ["ffaa_famet_tigre_at","CANT_SLING","All"]

    ];

     

    Hey guys, i'm trying to remove the animation from our Apache, but when I try wih this, it remove it from all helicopter.

     

    Here is what I add

    ASL_SLING_RULES_OVERRIDE = [
          ["All","CAN_SLING","All"],
          ["fza_ah64d_b2e","CANT_SLING","All"]
    	  ["fza_ah64d_b2e_nr","CANT_SLING","All"]
    	  ["B_UH60L_med_F","CAN_SLING","All"]
    	  ["B_MH60L_noprobe_F","CAN_SLING","All"]
    	  ["B_MH60L_F","CAN_SLING","All"]
    	  ["B_MH60L_gray_F","CAN_SLING","All"]
    	  ["B_HH60A_gray_F","CAN_SLING","All"]
    	  ["B_HH60A_grey_doors_F","CAN_SLING","All"]
    ];

     

×