Raised This Month: $ Target: $400
 0% 

Admin Sounds 1.2.2


Post New Thread Reply   
 
Thread Tools Display Modes
Chaos Llama
Senior Member
Join Date: Jul 2006
Old 05-17-2009 , 15:31   Re: Admin Sounds
Reply With Quote #41

REQUEST: It would be great if there were a command admins could execute that would stop the currently sound from playing on all users on the server. (eg. Playing the wrong song and ending it early). I used to use the old admin sounds plugin and in it i had a silent mp3 file and i used it to stop the music. It worked half the time, but in this plugin it never works.
Chaos Llama is offline
Cadav0r
Senior Member
Join Date: Jan 2006
Location: France
Old 05-18-2009 , 15:02   Re: Admin Sounds
Reply With Quote #42

Quote:
Originally Posted by Cadav0r View Post
I take note about that and will see to add this feature in the next version.
__________________
P.S : Sorry for my english but I'm French

My plugins : Admin Sounds




Cadav0r is offline
hi_tech_guy_18
Junior Member
Join Date: May 2009
Old 05-20-2009 , 14:17   Re: Admin Sounds
Reply With Quote #43

Sadly this mod just caused my servers to Hang on start up and do something strange

the strange:
Server boots and then decides to skip the rest of the start up stuff that it should and must do
(Connecting to steam servers / Listing its self on the server list server)
and dose some things with the map spawn cords

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]
//
//        "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"     "1" // display the name of the played sound (if not specified, use category display) [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"
{
    "Music"
    {
        "delay" "191"
        "Redneks - Cotton Eyed Joe" 
        {
            "file" "music/cotten-eye-joe.mp3"
        }
    }
    "Music"
    {
        "delay" "220"
        "Mash Up Euphoria CD 2 of 3 - Time to Burn Loneliness Cry Little Sister" 
        {
            "file" "music/time-to-burn.mp3"
        }
    }
    "Music"
    {
        "delay" "164"
        "The Prodigy - Everyone In The Place (155 And Rising)" 
        {
            "file" "music/everyone-in-the-place.mp3"
        }
    }
    "Music"
    {
        "delay" "218"
        "Grace - Not over yet" 
        {
            "file" "music/not-over-yet.mp3"
        }
    }
    "Music"
    {
        "delay" "217"
        "Kosheen - Overkill" 
        {
            "file" "music/overkill.mp3"
        }
    }
    "Music"
    {
        "delay" "235"
        "Real Mccoy - Run Away" 
        {
            "file" "music/runaway.mp3"
        }
    }
    "Music"
    {
        "delay" "177"
        "Portal - Still alive" 
        {
            "file" "music/portal_still_alive.mp3"
        }
    }
    "Music"
    {
        "delay" "160"
        "Rob Zombie - Reload (Time to Die)"
        {
            "file" "music/reload.mp3"
        }
    }
    "Music"
    {
        "delay" "167"
        "Men Without Hats - The Safety Dance"
        {
            "file" "music/the-safety-dance.mp3"
        }
    }
}
Yet I don't see an error with the config nor is it bitching about it in servers console screen
hi_tech_guy_18 is offline
Cadav0r
Senior Member
Join Date: Jan 2006
Location: France
Old 05-20-2009 , 15:51   Re: Admin Sounds
Reply With Quote #44

Quote:
Originally Posted by hi_tech_guy_18 View Post
Sadly this mod just caused my servers to Hang on start up and do something strange

the strange:
Server boots and then decides to skip the rest of the start up stuff that it should and must do
(Connecting to steam servers / Listing its self on the server list server)
and dose some things with the map spawn cords

[...]

Yet I don't see an error with the config nor is it bitching about it in servers console screen
Your config file is wrong!!!
Look :
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]
//
//        "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"     "1" // display the name of the played sound (if not specified, use category display) [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"
{
    "Music"
    {
        "Redneks - Cotton Eyed Joe" 
        {
            "file" "music/cotten-eye-joe.mp3"
            "delay" "191"
         }
        "Mash Up Euphoria CD 2 of 3 - Time to Burn Loneliness Cry Little Sister" 
        {
            "file" "music/time-to-burn.mp3"
            "delay" "220"
         }
        "The Prodigy - Everyone In The Place (155 And Rising)" 
        {
            "file" "music/everyone-in-the-place.mp3"
            "delay" "164"
         }
       "Grace - Not over yet" 
        {
            "file" "music/not-over-yet.mp3"
            "delay" "218"
         }
        "Kosheen - Overkill" 
        {
            "file" "music/overkill.mp3"
            "delay" "217"
         }
        "Real Mccoy - Run Away" 
        {
            "file" "music/runaway.mp3"
            "delay" "235"
         }
        "Portal - Still alive" 
        {
            "file" "music/portal_still_alive.mp3"
            "delay" "177"
         }
        "Rob Zombie - Reload (Time to Die)"
        {
            "file" "music/reload.mp3"
            "delay" "160"
         }
        "Men Without Hats - The Safety Dance"
        {
            "file" "music/the-safety-dance.mp3"
            "delay" "167"
        }
    }
}
With this config file, you have one category called "Music" and all sounds in

Be carefull with name too long!!!
__________________
P.S : Sorry for my english but I'm French

My plugins : Admin Sounds




Cadav0r is offline
DontWannaName
Veteran Member
Join Date: Jun 2007
Location: VALVe Land, WA
Old 05-23-2009 , 20:00   Re: Admin Sounds
Reply With Quote #45

Perhaps add a database so we can add the same sounds on all of our servers at once. Plus, make an option to show the stop commands on certain adio clips, cause theres no reason to show them on 2 sec sounds. Can we make sounds play greater than 1.0 so its louder than their surroundings that are also at 1.0.
__________________

DontWannaName is offline
Cadav0r
Senior Member
Join Date: Jan 2006
Location: France
Old 05-25-2009 , 14:13   Re: Admin Sounds
Reply With Quote #46

Good idea for database support!!!

and for stop option per sound, it's already planned.

Thanks for your ideas!!!

For sound volume, 1.0 is the max value (source engine limitation)
__________________
P.S : Sorry for my english but I'm French

My plugins : Admin Sounds




Cadav0r is offline
SRshot . [E]XTREME
New Member
Join Date: May 2009
Location: www.clansrshot.net
Old 05-25-2009 , 22:08   Re: Admin Sounds
Reply With Quote #47

perfect excelent
SRshot . [E]XTREME is offline
Send a message via ICQ to SRshot . [E]XTREME Send a message via AIM to SRshot . [E]XTREME Send a message via MSN to SRshot . [E]XTREME Send a message via Yahoo to SRshot . [E]XTREME
HshEisbaer
Member
Join Date: May 2009
Location: Berlin, Germany
Old 05-26-2009 , 17:06   Re: Admin Sounds
Reply With Quote #48

what do i have to write in the config that i have fastdownload?
HshEisbaer is offline
HshEisbaer
Member
Join Date: May 2009
Location: Berlin, Germany
Old 06-02-2009 , 15:45   Re: Admin Sounds
Reply With Quote #49

i upgraded my SourceMod and now the plugin is not running

anyone too?


32 <Failed> "Admin Sounds" (1.2.0) by cadav0r,dalto,o_O.Uberman.O_o,|HS|Jesus
33 <Failed> "Client Preferences" (1.2.1) by AlliedModders LLC

Last edited by HshEisbaer; 06-02-2009 at 16:55.
HshEisbaer is offline
HshEisbaer
Member
Join Date: May 2009
Location: Berlin, Germany
Old 06-03-2009 , 06:38   Re: Admin Sounds
Reply With Quote #50

some feedback pls?
HshEisbaer 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 00:46.


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