39 lines
1.2 KiB
SourcePawn
Executable File
39 lines
1.2 KiB
SourcePawn
Executable File
// vim: set ts=4 sw=4 tw=99 noet:
|
|
//
|
|
// AMX Mod X, based on AMX Mod by Aleksander Naszko ("OLO").
|
|
// Copyright (C) The AMX Mod X Development Team.
|
|
//
|
|
// This software is licensed under the GNU General Public License, version 3 or higher.
|
|
// Additional exceptions apply. For full license details, see LICENSE.txt or visit:
|
|
// https://alliedmods.net/amxmodx-license
|
|
|
|
//
|
|
// DoD Sounds Precache Plugin
|
|
//
|
|
|
|
#include <amxmodx>
|
|
|
|
public plugin_precache(){
|
|
precache_generic( "sound/misc/impressive.wav")
|
|
precache_generic( "sound/misc/headshot.wav")
|
|
precache_generic( "sound/misc/multikill.wav")
|
|
precache_generic( "sound/misc/doublekill.wav")
|
|
precache_generic( "sound/misc/godlike.wav")
|
|
precache_generic( "sound/misc/ultrakill.wav")
|
|
precache_generic( "sound/misc/killingspree.wav")
|
|
precache_generic( "sound/misc/rampage.wav")
|
|
precache_generic( "sound/misc/unstoppable.wav")
|
|
precache_generic( "sound/misc/monsterkill.wav")
|
|
precache_generic( "sound/misc/humiliation.wav")
|
|
|
|
precache_generic( "sound/misc/takenlead.wav" )
|
|
precache_generic( "sound/misc/tiedlead.wav" )
|
|
precache_generic( "sound/misc/lostlead.wav" )
|
|
|
|
return PLUGIN_CONTINUE
|
|
}
|
|
|
|
public plugin_init() {
|
|
register_plugin("DoD Sounds Precache",AMXX_VERSION_STR,"AMXX Dev Team")
|
|
}
|