• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Smitty's Sirens & Alarms

smitty

New member
This mod is made entirely by doughphunghus, I only made the request, gave licensed sounds and tested. Dough made the entire thing.

Smitty's Sirens & Alarms

This adds 19 additional sirens, alarms and alerts. When used with timed relays, motion sensors or pressure plates - the possibilities are invaluable.

For Darkness Falls users, you can set a timed relay with a specific siren to alert you when night is 2 hours away.

You can have a siren for security breaches vs an alert for when a horde is passing by.

Requires Speaker Schematic & Advanced Engineering.

All special speakers require a Speaker + Electrical Components.

LIST

  • Speaker - Ship Siren
  • Warning Alarm 1
  • Warning Alarm 2
  • Warning Alarm 3
  • Warning Alarm 4
  • Warning Alarm 5
  • Security Breach Voice
  • Sci Fi 1
  • Red Alert
  • Security Breach
  • Intruder Voice
  • Emergency Voice and Alarm
  • Emergency Voice
  • All Hands On Deck Voice
  • Alarm Siren 1
  • Alarm Siren 2
  • Alarm Fire
  • Sci Fi 2
  • Sci Fi 3
     
Test and working in current build A19.2

View attachment Smitty-SirensAndAlerts.zip

 
Last edited by a moderator:
Can you add your own custom sounds? Ie enemy to north south east west etc?

Would like add trip wire or motion sensors know where need respond to at base.

 
I might be able to help you out with this. The hard part in adding sounds to something like the siren (something that already can handle sounds) is.... having the sounds :).

I may be able to get a text -> speech translator working and then dump those to sound files.  This would likely make it sound “proper, like a recording”.  This would make the sound files royalty/copyright free.

im not promising anything, but, should I get this to work, What are the specific phrases you would want it to say?

also: smittys sirens are all licensed to smitty.  If I made the additional sirens for you I would likely hand the mod to you to either just play it in your own games or,  should you choose, post it for distribution for others.  Adding sounds to the game isn’t too hard, so I would encourage you to look into it and try it yourself if you’re the kind of person who likes to code/build/tinker with stuff. The hardest part is getting The proper version of Unity installed, and getting xyths tutorial project loaded.  The second hardest part is taking an existing mod (like smittys) and learning how to substitute your sounds into it/create your own items/blocks via XML. 

Can you add your own custom sounds? Ie enemy to north south east west etc?

Would like add trip wire or motion sensors know where need respond to at base.

 
Looking for Directions of Compass, Put a North facing camera, and attach sound to it, so when you are inside your base you can go to that side of the base for zombies.

Enemy to North

Enemy to South

 Enemy to East

Enemy to West

Enemy to NorthEast

Enemy to NorthWest

Enemy to SouthEast

Enemy to SouthWest

Wall Breach

Front Door Breach

Back Door Breach

Enemy on Surface (Used while Mining)

I just looked at files, looks like the sound files are embodied in UNITY3d file, not sure how to redo them. Looking at UNITY3D now.

 
is it possible to adjust the volume of the sounds by editing a specific line of code in the xml file? Because some sounds are incredingly loud! 

 
is it possible to adjust the volume of the sounds by editing a specific line of code in the xml file? Because some sounds are incredingly loud! 
I don't think there is that I can see.  I just packaged up the original sounds for this mod, without modification of them.  In sounds.xml there are some references to a "distantfadestart" and "distantfadeend" settings in the docs at the top of the file, but they are not used in any of the existing vanilla sounds nodes, but maybe these can be adjusted in the XML so it's only full volume if you're really close to the speaker block?

DCPoker said:
Looking for Directions of Compass, Put a North facing camera, and attach sound to it, so when you are inside your base you can go to that side of the base for zombies.

Enemy to North

Enemy to South

 Enemy to East

Enemy to West

Enemy to NorthEast

Enemy to NorthWest

Enemy to SouthEast

Enemy to SouthWest

Wall Breach

Front Door Breach

Back Door Breach

Enemy on Surface (Used while Mining)

I just looked at files, looks like the sound files are embodied in UNITY3d file, not sure how to redo them. Looking at UNITY3D now.
The "easiest" way to get this would be to generate/get your own sounds (.wav works well)  then use this mod as a template for how to make your own speakers/speaker mod.  You still have to package up the sounds files as unity.3d files though.  If you would like some help on this let me know.

 
I don't think there is that I can see.  I just packaged up the original sounds for this mod, without modification of them.  In sounds.xml there are some references to a "distantfadestart" and "distantfadeend" settings in the docs at the top of the file, but they are not used in any of the existing vanilla sounds nodes, but maybe these can be adjusted in the XML so it's only full volume if you're really close to the speaker block?

The "easiest" way to get this would be to generate/get your own sounds (.wav works well)  then use this mod as a template for how to make your own speakers/speaker mod.  You still have to package up the sounds files as unity.3d files though.  If you would like some help on this let me know.


I am just referring to the overal sound volume of the speakers... In general, i find them too loud when it goes off!. I have been looking at the code in the xml file, but what i see is this code, I have marked in red what i think needs to be adjusted to the sound level... :

<append xpath="/Sounds">

    <!-- Speaker 1 -->
    <SoundDataNode name="smitty_siren1">
      <AudioSource name="Sounds/AudioSource_VO_Announce"/>
        <AudioClip ClipName="#@modfolder:Resources/smittylv_envato_sounds.unity3d?ship_siren" Loop="true"/>
        <LocalCrouchVolumeScale name="1.0"/>
      <CrouchNoiseScale name="0.5"/>
      <NoiseScale name="1"/>     <!-- i think this one needs to be lowered -->
      <MaxVoices value="10"/>
      <MaxRepeatRate value="0"/>
    </SoundDataNode>

If you guys can tell me if i need to adjust this then i know what has to be done... Otherwise i want to know which line has to be adjusted accordingly...

 
I am just referring to the overal sound volume of the speakers... In general, i find them too loud when it goes off!. I have been looking at the code in the xml file, but what i see is this code, I have marked in red what i think needs to be adjusted to the sound level... :

<append xpath="/Sounds">

    <!-- Speaker 1 -->
    <SoundDataNode name="smitty_siren1">
      <AudioSource name="Sounds/AudioSource_VO_Announce"/>
        <AudioClip ClipName="#@modfolder:Resources/smittylv_envato_sounds.unity3d?ship_siren" Loop="true"/>
        <LocalCrouchVolumeScale name="1.0"/>
      <CrouchNoiseScale name="0.5"/>
      <NoiseScale name="1"/>     <!-- i think this one needs to be lowered -->
      <MaxVoices value="10"/>
      <MaxRepeatRate value="0"/>
    </SoundDataNode>

If you guys can tell me if i need to adjust this then i know what has to be done... Otherwise i want to know which line has to be adjusted accordingly...
In sounds.xml, at the top, there is some comments/ documentation.  I don't think NoiseScale will do it (but the documentation could be outdated/wrong) The NoiseScale is documented as:

<NoiseScale name="0-1"/> - changes the amount of noise this sound makes in general for AI

Which I read as "this is what the zombies "hear" and thus are drawn to.

 
Update: I tried adding these tags and could not get the sounds to get less loud.  The hope was to make it "as loud as it normally is" only a block from the speaker, and fade it out from there.  Using the "Ship Siren" (smitty_siren1) as the test as its really loud in general.

<distantfadestart name="0"/>

<distantfadeend name="0"/>

replacing "0" with different values didn't seem to make any changes, but at some point/combination the speaker stopped working,so not sure what's up with these particular tags.

Also: I changed <NoiseScale name="1"/> to <NoiseScale name=".1"/> and heard no difference in noise level output/volume/range

 
Last edited:
Not that I’m aware of, for like “overall sounds of a specific block or sound node”.  Of course, there are some audio settings from the main menu that can be changed (music/ambiance volumes) but I don’t know setting what a speaker/block falls under.

@smitty I  consider these sounds and the mod “owned by smitty” so if they want to change it (have me tweak the sound levels and repackage the sounds ) I could do that if they asked me to but maybe this is exactly how smitty wants their mod?

I can put together a different mod with some sounds for you if you would like, the hard part is getting the sounds that are “freely available to use”. (send me some links and I’ll see if I can use them.).  It might sound weird using this limitation, but I feel weird just taking clips from others and giving them to someone else (or the forums) unless they are licensed freely. If you want, I can point you to some links on how to add your own sounds to the game and you can create/add whatever sounds you want as your own mod.  It’s not super hard but it takes some time to get unity set up/installed and do the actual xml editing. Sound converting is actually easy once you’re set up to do it.

also:  I do have the capability to create “voice alerts” that can say whatever you want (I’m using the very ancient “espeak” tool right now) but the voices are not super pretty (sounds robotic).  I’m working on this for a mech mod I’ve released, which is still in development, and the volume levels need tweaking as well.  Additionally, I might be able to create something using some tools I have to mimic a sound/alarm if you have one in mind. Basic stuff though.

 
Last edited:
Not that I’m aware of, for like “overall sounds of a specific block or sound node”.  Of course, there are some audio settings from the main menu that can be changed (music/ambiance volumes) but I don’t know setting what a speaker/block falls under.

@smitty I  consider these sounds and the mod “owned by smitty” so if they want to change it (have me tweak the sound levels and repackage the sounds ) I could do that if they asked me to but maybe this is exactly how smitty wants their mod?

I can put together a different mod with some sounds for you if you would like, the hard part is getting the sounds that are “freely available to use”. (send me some links and I’ll see if I can use them.).  It might sound weird using this limitation, but I feel weird just taking clips from others and giving them to someone else (or the forums) unless they are licensed freely. If you want, I can point you to some links on how to add your own sounds to the game and you can create/add whatever sounds you want as your own mod.  It’s not super hard but it takes some time to get unity set up/installed and do the actual xml editing. Sound converting is actually easy once you’re set up to do it.

also:  I do have the capability to create “voice alerts” that can say whatever you want (I’m using the very ancient “espeak” tool right now) but the voices are not super pretty (sounds robotic).  I’m working on this for a mech mod I’ve released, which is still in development, and the volume levels need tweaking as well.  Additionally, I might be able to create something using some tools I have to mimic a sound/alarm if you have one in mind. Basic stuff though.


That sounds cool! Maybe you can make it so, that you adjust the sound levels in the xml if someone wants to.... Cause one "fixed" sound level is pretty annoying... Currently in "smitty's mod" one speaker is too loud and the other too low or annoying to hear... It is a good mod, but it could use some more work imho...

I got  some sounds in mind that i would like to see incorporated as a speaker... 

example: 

https://www.youtube.com/watch?v=GWXLPu8Ky9k    modern alarm 1

https://www.youtube.com/watch?v=W_9KR3mYkUo&list=PL9Z_KwF-qaztJlEdtO1Kiw-6UKVZbk75I   Claxon Alarm

https://www.youtube.com/watch?v=jmrXN6q0eu4     SGC Base Alert

https://www.youtube.com/watch?v=IIwJFYDuC-s    Stargate Atlantis Offworld alarm

Im also looking for one that says "Intruder Alert" but can't find any of the moment...

And maybe, i dunno if this is possible, to make a rotating warning beacon in red (or with other colors) that you can connect to your speaker, so that the base turns red when the alarm goes off...

That would be a cool feature!

 
That sounds cool! Maybe you can make it so, that you adjust the sound levels in the xml if someone wants to.... Cause one "fixed" sound level is pretty annoying... Currently in "smitty's mod" one speaker is too loud and the other too low or annoying to hear... It is a good mod, but it could use some more work imho...

I got  some sounds in mind that i would like to see incorporated as a speaker... 

example: 

https://www.youtube.com/watch?v=GWXLPu8Ky9k    modern alarm 1

https://www.youtube.com/watch?v=W_9KR3mYkUo&list=PL9Z_KwF-qaztJlEdtO1Kiw-6UKVZbk75I   Claxon Alarm

https://www.youtube.com/watch?v=jmrXN6q0eu4     SGC Base Alert

https://www.youtube.com/watch?v=IIwJFYDuC-s    Stargate Atlantis Offworld alarm

Im also looking for one that says "Intruder Alert" but can't find any of the moment...

And maybe, i dunno if this is possible, to make a rotating warning beacon in red (or with other colors) that you can connect to your speaker, so that the base turns red when the alarm goes off...

That would be a cool feature!
I won't be able to make an adjustable sound version because its either not possible, or it goes way beyond what I'm able to mod :(

I'll see what I can do about the sounds. I'll try to find "free common license" equivalents if I can.  I can make an "Intruder Alert" just to see how it turns out.

For the light, its also not something I can do.  The best thing I can come up with is to try to find a blinking light mod ( if any exist, I know you can make the lights blink in the game in POI/dev mode so its a built in option somewhere) and then tie that to the speaker so when the speaker goes off the light starts blinking.

I have some other sounds I'm going to try to make this weekend and package up so I'll see if I can figure out the "nice" sound level and post it so others can use it as a guide.  Part of the hard part of sounds is tweaking sound levels, etc, as sounds seem to "sound different" when they're in game vs when you just play them on your PC.  I don;t know why.

 
I won't be able to make an adjustable sound version because its either not possible, or it goes way beyond what I'm able to mod :(

I'll see what I can do about the sounds. I'll try to find "free common license" equivalents if I can.  I can make an "Intruder Alert" just to see how it turns out.

For the light, its also not something I can do.  The best thing I can come up with is to try to find a blinking light mod ( if any exist, I know you can make the lights blink in the game in POI/dev mode so its a built in option somewhere) and then tie that to the speaker so when the speaker goes off the light starts blinking.

I have some other sounds I'm going to try to make this weekend and package up so I'll see if I can figure out the "nice" sound level and post it so others can use it as a guide.  Part of the hard part of sounds is tweaking sound levels, etc, as sounds seem to "sound different" when they're in game vs when you just play them on your PC.  I don;t know why.


I see what u mean... Is it also possible for you that you can make smaller versions of the speaker? or different kind of speakers? because the one in "smitty's mod" it is pretty big imho... I prefer some smaller one so that you can place away in some corner or that you can hide somewhere... Dunno if that is too much work? If you can't do it, no problem...

 
I believe that any model that's labeled as "electrical" can be swapped out with the in-game siren (in theory it would be any model...so you could use a rock as a speaker, but it doesn't seem to work that way and I'm not sure why). I'll see what I can come up with.  I'm thinking of making this a "tutorial" for the forums on how to make sounds for the game from start -> finish so anyone can do it, or you could add/modify the mod (once I'm done) if you wanted to to add more/change the existing sounds/etc.  Hopefully I'll be done with the mod soon and I'll put out the tutorial next

 
I believe that any model that's labeled as "electrical" can be swapped out with the in-game siren (in theory it would be any model...so you could use a rock as a speaker, but it doesn't seem to work that way and I'm not sure why). I'll see what I can come up with.  I'm thinking of making this a "tutorial" for the forums on how to make sounds for the game from start -> finish so anyone can do it, or you could add/modify the mod (once I'm done) if you wanted to to add more/change the existing sounds/etc.  Hopefully I'll be done with the mod soon and I'll put out the tutorial next
Thanks we'll see what you can come up with

 
DCPoker said:
Looking for Directions of Compass, Put a North facing camera, and attach sound to it, so when you are inside your base you can go to that side of the base for zombies.

Enemy to North

Enemy to South

 Enemy to East

Enemy to West

Enemy to NorthEast

Enemy to NorthWest

Enemy to SouthEast

Enemy to SouthWest

Wall Breach

Front Door Breach

Back Door Breach

Enemy on Surface (Used while Mining)

I just looked at files, looks like the sound files are embodied in UNITY3d file, not sure how to redo them. Looking at UNITY3D now.
@DCPoker: Are you still looking for these voice lines as speakers?  Your post gave me an idea. I have a way of generating "robotic like" speech (its not super clean/human like, but I can script it so its fast) and could probably throw something together. I was thinking of doing a mod for myself for something where 1 speaker can say "Enemy" and then have another say the directions, and then others for other things,and you then can daisy chain them together (sort of...put them all in the same circuit) to say a lot of different things. 

Anyway, I might be able to put these into one just for you if you're interested, or you could use mine when I get around to making it :)

If you've figured out how to get sounds into unity.3d files, I can just generate the .wav sound files

 
Last edited:
@DCPoker: Are you still looking for these voice lines as speakers?  Your post gave me an idea. I have a way of generating "robotic like" speech (its not super clean/human like, but I can script it so its fast) and could probably throw something together. I was thinking of doing a mod for myself for something where 1 speaker can say "Enemy" and then have another say the directions, and then others for other things,and you then can daisy chain them together (sort of...put them all in the same circuit) to say a lot of different things. 

Anyway, I might be able to put these into one just for you if you're interested, or you could use mine when I get around to making it :)

If you've figured out how to get sounds into unity.3d files, I can just generate the .wav sound files
If this is something you're interested in doing, I can have the lines recorded. A British female speaking monotone would likely be the best candidate for this as is typical in movies.

 
Back
Top