Raised This Month: $ Target: $400
 0% 

Admin Sounds 1.2.2


Post New Thread Reply   
 
Thread Tools Display Modes
DontWannaName
Veteran Member
Join Date: Jun 2007
Location: VALVe Land, WA
Old 07-22-2010 , 11:20   Re: Admin Sounds 1.2.2
Reply With Quote #211

I will test it later today.
__________________

DontWannaName is offline
crazy-tony
Member
Join Date: Aug 2008
Old 07-23-2010 , 14:17   Re: Admin Sounds 1.2.2
Reply With Quote #212

hey there ..great plugin by the way but im having a problem ..

i used to run the old version which worked ok until last tf2 update so i updated to this version ..

made the sound-list and sounds play fine but there not uploading for some reason ..i have set the default download to 1 and it still wont download to clients ..

now every thing else downloads fine from our web-server via the server cfg download link so i no its not that so im out of ideas of what it could be ...any ideas ??
__________________
crazy-tony is offline
DontWannaName
Veteran Member
Join Date: Jun 2007
Location: VALVe Land, WA
Old 07-23-2010 , 18:39   Re: Admin Sounds 1.2.2
Reply With Quote #213

Ya, it fixed it for me. Thanks
__________________

DontWannaName is offline
Bacardi
Veteran Member
Join Date: Jan 2010
Location: mom's basement
Old 07-24-2010 , 06:05   Re: Admin Sounds 1.2.2
Reply With Quote #214

Quote:
Originally Posted by crazy-tony View Post
hey there ..great plugin by the way but im having a problem ..

i used to run the old version which worked ok until last tf2 update so i updated to this version ..

made the sound-list and sounds play fine but there not uploading for some reason ..i have set the default download to 1 and it still wont download to clients ..

now every thing else downloads fine from our web-server via the server cfg download link so i no its not that so im out of ideas of what it could be ...any ideas ??
Show your ...addons/sourcemod/configs/soundlists.cfg

from server
sv_allowdownload 1

client
cl_allowdownload 1
cl_downloadfilter all

make sure you have same sound files in server as same path sv_downloadurl "domain"
Don't Bzip2 files from server.
Bacardi is offline
DeUltima
Junior Member
Join Date: Nov 2008
Old 08-21-2010 , 06:37   Re: Admin Sounds 1.2.2
Reply With Quote #215

Is there any way to play the sounds from the command line? So that we could bind a particular sound to a key. I've tried using "sm_play" to do this, but it considers immunity, thus Admins of the same or higher level, don't hear to sound byte.

If it's not available, then is there any way this feature could make it's way into a future release?
DeUltima is offline
matt.b
BANNED
Join Date: Apr 2010
Old 08-25-2010 , 12:57   Re: Admin Sounds 1.2.2
Reply With Quote #216

how can i add this in the admin custom menu?

This does not support .wav files because it's telling me


Failed to load sound "misc\bendover.wav", file probably missing from disk/repository

my soundlist

Code:
//Make sure "soundslist.cfg" is in your addons/sourcemod/configs/ directory.
//Sounds go in your mods "sound" directory (such as sound/misc/filename.wav).
//
//File Format:
//"Admin Sounds"
//{
//    "Category 1" // Name of the category (use default server language here)
//    {
//        "fr"     "Categorie 1" // Name of the category in the specified language (refers to configs/language.cfg) [optional]
//        "es"     "..." // [optional]
//        "delay"     "20" // delay for all sounds of the category (if not specified, use default delay => cvar) [optional]
//        "volume"     "1.0" // volume for all sounds of the category (if not specified, use default volume => cvar) [optional]
//        "display"     "1" // display the name of the played sound (if not specified, use default display => cvar) [optional]
//        "stop"        "0" // disable stop option for this category (if not specified, use default stop => cvar) [optional]
//
//        "wazza"  // Name of sound
//        {
//            "file"    "misc/wazza.wav" // "file" is always there, next is the filepath (without "sound/")
//            "download"     "1"    // 1 to download the sounds, 0 to not download (default is 1) [optional]
//            "delay"     "30" // delay for the next sound in seconds (if not specified, use category delay) [optional]
//            "volume"     "0.8" // volume for this sound (if not specified, use category volume) [optional]
//            "display"     "0" // display the name of the played sound (if not specified, use category display) [optional]
//            "stop"        "0" // disable stop option for this sound (if not specified, use category stop option) [optional]
//        }
//    }
//
//    "Category 2"
//    {
//        "Sound 1"
//        {
//            "file"    "misc/sound1.mp3" // "file" is always there, next is the filepath (without "sound/")
//        }
//    }
//}
//
// To know if your list is good, type sm_admin_sounds_list in your console
//

"Admin Sounds"
{
    "Sounds"
    {
        "fr" "Sons"
        "delay" "60"
        "volume" "0.8"
        "Bend Over"
        {
            "file" "misc/bendover.wav"
            "stop" "0"
        }
    }

    "Short Story"
    {
        "fr" "Petites Histoires"
        "delay" "90"
        "Bodyrock"
        {
            "file" "xxx/bodyrock_scout_spy.mp3"
        }
    }

    "Musics"
    {
        "fr" "Musiques"
        "es" "Musica"
        "delay" "120"
        "Rihanna" 
        {
            "file" ""
            "download" "0"
            "display" "1"
        }
    }
}
it's in sound/misc/bendover.wav

on counter strike source

Last edited by matt.b; 08-26-2010 at 00:58.
matt.b is offline
matt.b
BANNED
Join Date: Apr 2010
Old 08-26-2010 , 13:35   Re: Admin Sounds 1.2.2
Reply With Quote #217

someone?
matt.b is offline
Cadav0r
Senior Member
Join Date: Jan 2006
Location: France
Old 08-26-2010 , 14:46   Re: Admin Sounds 1.2.2
Reply With Quote #218

Quote:
Originally Posted by DeUltima View Post
Is there any way to play the sounds from the command line? So that we could bind a particular sound to a key. I've tried using "sm_play" to do this, but it considers immunity, thus Admins of the same or higher level, don't hear to sound byte.

If it's not available, then is there any way this feature could make it's way into a future release?
I will look for this but I have lack of time now and I work on other plugin...
__________________
P.S : Sorry for my english but I'm French

My plugins : Admin Sounds




Cadav0r is offline
matt.b
BANNED
Join Date: Apr 2010
Old 08-26-2010 , 15:32   Re: Admin Sounds 1.2.2
Reply With Quote #219

how can i add sm_admin_sounds_stop

to the custom menu i already have

"Sound Menu"
{
"admin" "sm_admin"
"cmd" "sm_admin_sounds_menu"
"execute" "player"
"1"
{
"title" "Play Sound"
"type" "list"
}
}
}

and whenever i play a sound it shows


[SM] Type !stopall to hear no sound

i want to stop that

or does it only show for admins?

like stopall i dont see an option for that in the soundlist.cfg

Last edited by matt.b; 08-26-2010 at 15:39.
matt.b is offline
Cadav0r
Senior Member
Join Date: Jan 2006
Location: France
Old 08-26-2010 , 15:54   Re: Admin Sounds 1.2.2
Reply With Quote #220

Quote:
Originally Posted by matt.b View Post
how can i add sm_admin_sounds_stop

to the custom menu i already have

"Sound Menu"
{
"admin" "sm_admin"
"cmd" "sm_admin_sounds_menu"
"execute" "player"
"1"
{
"title" "Play Sound"
"type" "list"
}
}
}

and whenever i play a sound it shows


[SM] Type !stopall to hear no sound

i want to stop that

or does it only show for admins?

like stopall i dont see an option for that in the soundlist.cfg
Why adding it to custom admin menu? It already presents in admin menu...

For stopall you must disable stopall option in cfg file...
__________________
P.S : Sorry for my english but I'm French

My plugins : Admin Sounds




Cadav0r is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 09:15.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode