View Single Post
Combo
New Member
Join Date: May 2013
Old 05-21-2013 , 04:58   Re: Admin Sounds 1.2.2
Reply With Quote #297

Hi
I used this plugin in counter strike global offensive
I have problem. when you click to play sounds, sounds do not play. No errors in console. only writes to chat:
[SM] Admin Sounds: Type !stopall to reenabled sounds

My soundslist.cfg:
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" 	"1" // 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"
{
	"Welcome"
	{	
		"delay" 	"20"
		"Another"
		{
			"file" "/music/welcome/Another.mp3"
		}
	}
	"Pierdoly"
	{
		"delay" 	"10"
		"Kurwa no nie"
		{
			"file" "/muza/No_nie.mp3"
		}
		"delay" 	"10"
		"no chodz tu swinko"
		{	
			"file" "/muza/swinko.mp3"
		}
	}
}
sorry for my english, I'm really bad at English

Last edited by Combo; 05-21-2013 at 05:09.
Combo is offline