Try this :
PHP Code:
if (HeadShotKillSound)
{
switch(random_num(0,2))
{
case 0:
{
client_cmd(killer, "speak misc/headshot")
client_cmd(victim, "speak misc/headshot")
}
case 1:
{
client_cmd(killer, "speak misc/headshot10")
client_cmd(victim, "speak misc/headshot10")
}
case 2:
{
client_cmd(killer, "speak misc/headshot11")
client_cmd(victim, "speak misc/headshot11")
}
}
}
__________________