No global Sound Trigger

nachtmasse

New Member
Fantastic Community!!!!

I created an costum Sound Trigger for DayZ Epoch with 2D Editor. The Sound works but he is Global.
How can i fix it that the sound is only hearable in the trigger Area.

my mission.sqm:
Class Sensors:
Code:
class Item3
        {
            position[]={11434.885,144.6488,3999.8887};
            a=30;
            b=30;
            activationBy="WEST";
            interruptable=1;
            age="UNKNOWN";
            expActiv="playSound ""mkhaus""";
            class Effects
            {
            };
        };
    };
};
 
Thank you Vampire.

I tried several ways and this will work for me:

Code:
class Item3
        {
            position[]={11411.938,147.59839,4024.8496};
            a=50;
            b=50;
            activationBy="WEST";
            interruptable=1;
            age="UNKNOWN";
            name="mkhaus";
            expCond="(player distance mkhaus) < 50;";
            expActiv="playSound ""mkhaus""";
            class Effects
            {
            };
        };

Sorry for posting in the wrong forum area.
 
Back
Top