plugin_kick2
by Rufius (rufius_dk@hotmail.com)
5 dec 2001
For AdminMod version 2.50.09 or newer.
http://www.adminmod.org

command: admin_kick2 <target>

Files Included:

plugin_kick2.sma : Plugin source.
goodbye.wav      : sound to be played when kicked.
mapname.res      : file dir for clients to download goodbye.wav
sound.inc        : plugin need this file to compile(Thanks to Sank for letting me use this)
.................................................................

After compilation plugin_kick2.amx goes in your scripts dir.
add the line addons/adminmod/scripts/plugin_kick2.amx to your plugin.ini file

.................................................................

goodbye.wav goes in your sound/misc folder

.................................................................

Sound.inc goes in Admin/scripting/include

.................................................................


The res file goes in your maps folder 
Rename the res file to your map name Ex de_dust ore dod_caen whatever MOD u might run.
U have to make a res file for each map in your mapcycle and add the line sound/misc/goodbye.wav

NOTE 

if u are running a small server and dont want client to lag the server with them
uploading from u,use the goodbye sound includet in Half life just edit this line
in the sma file:

} else {
	//put the goodbye.wav folder in <moddir>\sound\misc
	playsoundall("misc\goodbye.wav");

to:

} else {
	//put the goodbye.wav folder in <moddir>\sound\misc
	playsoundall("sound\vox\goodbye.wav");
	
....................................................................	

INJOY