View Single Post
Sanjay Singh
Veteran Member
Join Date: Sep 2016
Old 02-17-2020 , 09:12   Re: To help new plug-in
Reply With Quote #8

Quote:
Originally Posted by wy19850 View Post
Hit the head dead, make a sound, hope someone help, thank you
Try
PHP Code:
#include <amxmodx>

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

new const soundfile[]="misc/headshot.mp3" //soundfile name here

public plugin_init()
{
    
register_plugin(PLUGINVERSIONAUTHOR)
}

public 
plugin_precache()    precache_sound(soundfile)

public 
client_death(iKilleriVictimiWpnIndexiHitPlace)
{
    if(
iHitPlace == HIT_HEAD)
    {
        
client_cmd(iKiller"mp3 play %s"soundfile)
    }

__________________
Sanjay Singh is offline
Send a message via AIM to Sanjay Singh