This is probably a stupid question but how do I stop a looping heartbeat sound? Here's how I play the sound:
PHP Code:
new const HEARTBEAT_SOUND[] = "player/heartbeat1.wav";
...
client_cmd(victim, "spk %s", HEARTBEAT_SOUND);
I've seen some plugins stop them like this:
PHP Code:
client_cmd(victim, "stopsound");
But it doesn't seem to work. The sound keeps looping even after I die or onto another round...
__________________