I'm making a plugin for counterstrike, and i want something to be executed on a player when he dies.. (Only the player who dies can hear/see/whatever it)
Code:
public client_connect(id) {
client_cmd(id,"mp3 play sound/misc/intro_new.mp3")
return PLUGIN_CONTINUE
}
Code:
public client_connect(id)
Likt that, but this is when a client connects, now i want this when a client dies.
I only found this:
public client_death(id) but that only worx for TFC or DOD...
Is there anything like this for Cstrike?