Jump to content

chernaruski

Member
  • Content Count

    317
  • Joined

  • Last visited

  • Medals

Posts posted by chernaruski


  1. Is it possible calling for safezone / zedless area externally or it must be placed on mission creation and only possible on init via module?
    I want to try and attach safe zones to a dynamically spawned missions locations, and make sure these dynamic missions are spawned into zedless areas.


  2. Why you have 2 Contact folders ? Are you using side load addon to open up more Contact DLC assets? I have only the (Platform) one, with static objects and stuff I use.
    For more terrain and props assets you can use kju's addons. 
    As for alien stuff , I pretty sure they said from the beginning its not gonna be public , SP only (or with dependancy, same as with rest of the DLC's) .


  3. Heh , good to hear. Do you use Headless Client for your AI? I'm asking because, I'm kinda struggling to balance the total AI number , without making the performance drop & without HC. My approach is: every AI unit must have some role in a dynamic missions/static mission/patrol or other... and you just add module for ambient civs , which is nice , but should eat your performance up...


  4. I had the same thing when I added custom animations via Infistar. Animations just wouldn't start, play incorrect animation time I've set or just stop and get the player stuck in some state. Was not sure what I did wrong, its a simple line in their config... Decided not to count on their "support", so I've just dropped the idea after quite a few tests.
     


  5. was just coming back to Ravage mod world, and wanted quickly to check on updates about latest changes... and what I see in the last post 😄 
    @Vandeanson  keep it up dude, glad you decided not to abandon the building system completely.  Looking forward to see and test it.

    • Haha 1

  6. Hey Terrain Aces , need your help with this issue:

    Jwt4E2h.png

    As you can see , during nighttime , coast line is kinda "glowing" when in game. Fog like "wet sand" layer goes all along the shore line. When light hits it , it gets even brighter...

    First , I though it's somehow related to seafoam and its different params. Started tweaking it , nothing. Changed it to vanilla configs of Altis, Sratis, Tanoa ones. Didn't work. (atm Stratis config is used)
    Then , I found shoreWetLayerReflectionIntensity param and lowered it. Nothing. Reverted back.

    Then I thought maybe its the problem with light source that is reflected in this wet layer of sand shore... moon? skyObject? Could't find problems there either, all vanilla should work just fine. Something about it ... uh...banging my head on a keyboard here. Anyone encountered similar where to look?


  7. init.sqf & description.ext have the proper entries and rest of vemf activities are working fine, its only helis you have problem with,  I assume?
    Config looks just fine. I even compared it to my old working version.

    I remember correctly, these heli patrols are not random, rather attached to invasion missions , right?  Maybe try changing heli classnames, start with only basic exile one "Exile_Chopper_Huey_Armed_Green" and see if it spawns.
     


  8. You are most welcome @Vandeanson

    If only it was possible to have some sort of database based save system for your mod and Ravage combined , and a full MP support , I would leave the exile framework and switch to this a long time ago...

    How is the performance tweaks and base buildings coming along , btw? 
    Also wanted to ask you, is there a reason you decided to use Addon Settings menu for the settings tweaks and not via Systems modules (like Ravage do).
    Gonna do a deeper Multiplayer server testing for your mod later on

    About the traders, not a big fan. In a post-apo it only made sense to me to have traders with a non-currency based trade.  


  9. try solutions that can be found on here at the forums, some people recommend :

    - try reducing image a bit lower then your filesize limit , if you set it to 100k lower it to 90k or something. Could be bite and byte size differences there. 
    basic.cfg . make sure you edit and load the correct one, sometimes there are multiple folders that contain cfg file , if you use GSP

    Quote

    MaxCustomFileSize = 2000000; // file custom in byte


    - editing config.cfg and removing the kick from these lines , serious security issues with this ,  I wouldn't recommend

    onUnsignedData 						= "kick (_this select 0)";
    onHackedData 						= "kick (_this select 0)";
    onDifferentData 					= "";


     


  10. I'm trying to find what the cause for the ambient background sound cut-offs. As you can see in video recording , looped background sound cuts off when you look around (or in a specific direction, not sure). In this specific case , I'm talking about night crickets looped background.
    I've noticed it happening to other sets too, but I could find any consistency. 

     

    class ForestNight_SoundSet {
            soundShaders[] = {"ForestNight_SoundShader"};
            volumeFactor = 0.1;
            spatial = 0;
            loop = 1;
            sound3DProcessingType = "ForestNight_3DProcessingType";
        };

    Current SoundShader is:

    class ForestNight_SoundShader
        {
            samples[] = {{"map\map_sounds\Ambient\Night\forest_night",1}};
            volume = "(1 - houses) * (1 - rain) * ((daytime factor [0.79, 0.88]) + (daytime factor [0.25, 0.17]))";
        };


    I've tried monitoring soundcontrollers , didn't see anything out of the ordinary... 


    Any ideas what can cause such sound behavior?
    Can sounds confugured and assigned via CfgEnvSpatialSounds cut into the sound mix when they are initated and make other stutter?

×