In the console it says:
Failed to load sound "sound\siege\jihad.wav", file probably missing from disk/repository
Failed to load sound "sound\siege\big_explosion.wav", file probably missing from disk/repository
Now, I have these added to my garrysmod/sound/siege/[those files] for my server. I also added them to my website for FastDL, those were put: public/server/sound/siege/[those files]
I figured the addon would make it so I wouldn't have to force players to download these sounds. Anyway, I tried to force the downloads by doing:
Code: Select all
if (server) then
resource.AddWorkshop( "184346376" ) <-- this is my collection
resource.AddSingleFile( "/public/server/sound/siege/jihad.wav" )
resource.AddSingleFile( "/public/server/sound/siege/big_explosion.wav")
end
So, I guess my question is..how can I get this to work?
Note: I can do 'ulx playsound /siege/jihad.wav' and it will play the sound on the server for everyone.
Also note: I am using the .gma file. It hasn't been extracted and placed ( I don't know if that makes a difference ).
Thank you!