I've noticed on some servers (including mine) that there's a dog barking on some servers. I've not updated or added anything on the server in the past 1 week and the dog "invasion" started for 4-5 days ago.
When you go to a spot on the map, you'll be able to hear a dog barking. I'm using rp_evocity_v33x and when i go outside the first tunnel from spawn (the tunnel outside the city), people are hearing a dog barking. Any clue of what It is or someone have experienced it? Since It's kinda hilarious and akward D:
The dog sound is only on the rp_evocity_v33x I think.
It's just part of the background sound on that map. Some maps use it, especially useful on city roleplay maps.
soundscapes broke on latest gmod update i believe
[editline]15th September 2015[/editline]
you might try something like this
-Snip- See exhos post below
If it works it will remove all soundscapes but that is likely better then dogs barking none stop
drop that into lua/autorun/server
Let me know if it works
also here might be a bit more specific (if the first works and someone can find the dog soundscape)
-snip- Was not coherent XD
I probably royally screwed this last section (
Your first example attempts to call Remove() on a table and I don't even know whats going on in the second
[code]
local soundscapes = ents.FindByClass("env_soundscape")
for _, ent in pairs( soundscapes ) do
ent:Remove()
end
[/code]
[QUOTE=Exho;48687627]Your first example attempts to call Remove() on a table and I don't even know whats going on in the second
[code]
local soundscapes = ents.FindByClass("env_soundscape")
for _, ent in pairs( soundscapes ) do
ent:Remove()
end
[/code][/QUOTE]
lul yeah i did this super fast wasnt thinking logically, thanks for clearing that up
[editline]15th September 2015[/editline]
[lua]
function ShootDogs()
local soundscapes = ents.FindByClass( "env_soundscape" )
for _, ent in pairs( soundscapes ) do
ent:GetKeyValues(tableofsoundkeys)
if table:HasValue(tableofsoundkeys, DATVALUE ) then -- Value of the dog soundscape if anyone can find it
ent:Remove()
end
end
hook.Add(PostGamemodeLoaded , "KilltheDogs", "ShootDogs")
[/lua]
maybe something along these lines?
[QUOTE=kulcris;48687461]soundscapes broke on latest gmod update i believe[/QUOTE]
No they didn't, they were actually fixed in the latest gmod update. The problem is that the server you are playing on runs an outdated version of the game, and it doesn't contain the updated soundscape files necessary for the fix to work.
I don't know if this would help. but in the CS:GO files theres some scripts with the volume of a sound. according to the information found in my csgo directory the dog_med_inside_bark_1,2,3,4,5,6.wav is located somewhere in the csgo directory. its env name is: inferno.DogBarkingInside
I Have the same problem with my map (RP_EvoCity2_V2P) i don't know if what i posted was the answer and i am just shit at putting it in teh right place in that lua code posted above ;)
[QUOTE=noah8282;48720344]I don't know if this would help. but in the CS:GO files theres some scripts with the volume of a sound. according to the information found in my csgo directory the dog_med_inside_bark_1,2,3,4,5,6.wav is located somewhere in the csgo directory. its env name is: inferno.DogBarkingInside
I Have the same problem with my map (RP_EvoCity2_V2P) i don't know if what i posted was the answer and i am just shit at putting it in teh right place in that lua code posted above ;)[/QUOTE]
[QUOTE=Robotboy655;48692932]No they didn't, they were actually fixed in the latest gmod update. The problem is that the server you are playing on runs an outdated version of the game, and it doesn't contain the updated soundscape files necessary for the fix to work.[/QUOTE]
Delete scripts/ folder on your server AND client.
[QUOTE=Robotboy655;48720375]Delete scripts/ folder on your server AND client.[/QUOTE]
Were can i find the scripts on my server?
[editline]19th September 2015[/editline]
[QUOTE=Robotboy655;48720375]Delete scripts/ folder on your server AND client.[/QUOTE]
BAsicly i want the dog sound removed. i tried the above codes but i either don't know how to use them or they don't work. I use rp_EvoCity_v2p as map. Heres some info on the dog sound I've found so far.
Name: inferno.DogBarkingInside (Comes from the Inferno map from CSS/CSGO)
Directory: dog_med_inside_bark_1,2,3,5,6.wav
Some Info Taken from the SoundList (From Console):
( 2b) 37232 : ambient\animal\dog_med_inside_bark_5.wav
( 2b) 75258 : ambient\animal\dog_med_inside_bark_2.wav
( 2b) 34458 : ambient\animal\dog_med_inside_bark_3.wav
( 2b) 32056 : ambient\animal\dog_med_inside_bark_1.wav
( 2b) 70440 : ambient\animal\dog_med_inside_bark_6.wav
(No 4)
[QUOTE=noah8282;48720499]Were can i find the scripts on my server?
[editline]19th September 2015[/editline]
BAsicly i want the dog sound removed. i tried the above codes but i either don't know how to use them or they don't work. I use rp_EvoCity_v2p as map. Heres some info on the dog sound I've found so far.
Name: inferno.DogBarkingInside (Comes from the Inferno map from CSS/CSGO)
Directory: dog_med_inside_bark_1,2,3,5,6.wav
Some Info Taken from the SoundList (From Console):
( 2b) 37232 : ambient\animal\dog_med_inside_bark_5.wav
( 2b) 75258 : ambient\animal\dog_med_inside_bark_2.wav
( 2b) 34458 : ambient\animal\dog_med_inside_bark_3.wav
( 2b) 32056 : ambient\animal\dog_med_inside_bark_1.wav
( 2b) 70440 : ambient\animal\dog_med_inside_bark_6.wav
(No 4)[/QUOTE]
If there is no scripts/ folder on your server or client, it are all set.
MAKE SURE you do not have those folders in BOTH, SERVER and your CLIENT.
Then make sure your server is up to date by running SteamCMD with update commands.
[QUOTE=Robotboy655;48720694]If there is no scripts/ folder on your server or client, it are all set.
MAKE SURE you do not have those folders in BOTH, SERVER and your CLIENT.
Then make sure your server is up to date by running SteamCMD with update commands.[/QUOTE]
There is a scripts folder on my client (cstrike in steamapps.) The Dog Sound script (soundscapes_inferno.txt) file is from counter-strike global offensive, but theres no script file in my server? what do i exactly need to do to disable the dog sound?
This isn't about cstrike, go to C:\Program Files (x86)\Steam\SteamApps\common\GarrysMod\garrysmod and delete scripts/ folder from there, AND UPDATE YOUR SERVER.
[QUOTE=Robotboy655;48720867]This isn't about cstrike, go to C:\Program Files (x86)\Steam\SteamApps\common\GarrysMod\garrysmod and delete scripts/ folder from there, AND UPDATE YOUR SERVER.[/QUOTE]
There is no Scripts folder?
[editline]19th September 2015[/editline]
[QUOTE=noah8282;48720891]There is no Scripts folder?[/QUOTE]
And i Updated my server to the latest update
If there's no scripts folder, then you are all good.
Make sure there's no scripts folder on your server as well.
Make triple check you have updated your server. Last update was in September.
[QUOTE=Robotboy655;48720959]If there's no scripts folder, then you are all good.
Make sure there's no scripts folder on your server as well.
Make triple check you have updated your server. Last update was in September.[/QUOTE]
BRUH! BRUH BRUH BRUH BRUH THAAAAAAAAAAAAAAAAAAAANK YOOOOOOOOOOOOOU! I LOVE U BRUH! BRUH BRUH BRUH. YOU MAKE MY DAY! KEEP HELPING OTHERS U DANG BOY!
Sorry, you need to Log In to post a reply to this thread.