/StoreDeathsound

Adds support for death sounds to Zephyrus Store plugin

Primary LanguageSourcePawnGNU General Public License v3.0GPL-3.0

StoreDeathsound

Death sounds for Zephyrus Store

add this to your .\addons\sourcemod\translations\store.phrases.txt

	"death_sound"
	{
		"en" "Death sound"
	}

add something like this to your .\addons\sourcemod\configs\store\items.txt

	"Death sounds"
	{
		"Tribute"
		{
			"path" "hg/cannon.mp3"
			"origin" "1"  // 1 - global (map)/ 2 - local (player)
			"volume" "1.0"
			"price" "100"
			"type" "death_sound"
		}
		"I'm dying!"
		{
			"path" "player/dying.mp3"
			"origin" "2"  // 1 - global / 2 - local
			"volume" "0.5"
			"price" "100"
			"type" "death_sound"
		}
		"Argh"
		{
			"path" "player/argh.mp3"
			"origin" "2"  // 1 - global / 2 - local
			"volume" "1.0"
			"price" "100"
			"type" "death_sound"
		}
	}

no need for manual adding to downloader/precacher plugins

no sounds included.