View Single Post
wy19850
Member
Join Date: Feb 2020
Location: suzhou
Old 02-17-2020 , 12:41   Re: To help new plug-in
Reply With Quote #16

*
*
*
*Thank you very much, thank you for your help, I wish you good luck

*
*
*
#include <amxmodx>

#define PLUGIN "Headshot Sound"
#define VERSION "1.0"
#define AUTHOR "Author"

new const soundfile[]="misc/head.wav" //soundfile name here

public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
}

public plugin_precache() precache_sound(soundfile)

public client_death(iKiller, iVictim, iWpnIndex, iHitPlace)
{
if(iHitPlace == HIT_HEAD)
{
client_cmd(iKiller, "spk misc/head.wav")
}
}
wy19850 is offline
Send a message via Skype™ to wy19850